functional.test.js.tpl 287 B

12345678910
  1. import {
  2. runWebpackExampleInMemory,
  3. } from '../test/test-utils';
  4. test('should run with no errors or warnings', async () => {
  5. const buildStats = await runWebpackExampleInMemory('simple');
  6. const { errors, warnings } = buildStats;
  7. expect([...errors, ...warnings].length).toBe(0);
  8. });