Improve --quiet test

This commit is contained in:
Michael Shilman 2021-02-20 06:51:40 +08:00
parent 75fa9eed6c
commit 95a85b8592

View File

@ -156,20 +156,27 @@ describe.each([
});
});
const progressPlugin = (config) =>
config.plugins.find((p) => p.constructor.name === 'ProgressPlugin');
describe('dev cli flags', () => {
beforeEach(() => {
jest.clearAllMocks();
cache.clear();
});
it('--quiet', async () => {
const options = {
...baseOptions,
quiet: true,
};
await buildDevStandalone(options);
const { plugins } = getConfig(previewExecutor.get, 'preview');
const cliOptions = { ...reactOptions, ...baseOptions };
expect(plugins.find((p) => p.constructor.name === 'ProgressPlugin')).toBeFalsy();
it('baseline', async () => {
await buildDevStandalone(cliOptions);
const config = getConfig(previewExecutor.get, 'preview');
expect(progressPlugin(config)).toBeTruthy();
});
it('--quiet', async () => {
const options = { ...cliOptions, quiet: true };
await buildDevStandalone(options);
const config = getConfig(previewExecutor.get, 'preview');
expect(progressPlugin(config)).toBeFalsy();
});
});