docusaurus/v2/test/webpack/server.test.js
2018-10-25 17:03:19 -07:00

28 lines
842 B
JavaScript

/**
* Copyright (c) 2017-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import createServerConfig from '@lib/webpack/server';
import {validate} from 'webpack';
import loadSetup from '../loadSetup';
describe('webpack production config', () => {
test('simple', async () => {
console.log = jest.fn();
const props = await loadSetup('simple');
const config = createServerConfig(props).toConfig();
const errors = validate(config);
expect(errors.length).toBe(0);
});
test('custom', async () => {
console.log = jest.fn();
const props = await loadSetup('custom');
const config = createServerConfig(props).toConfig();
const errors = validate(config);
expect(errors.length).toBe(0);
});
});