Skip to content

Commit

Permalink
tests(sourcemap): fix flaky stats statement (#1232)
Browse files Browse the repository at this point in the history
  • Loading branch information
evenstensberg committed Feb 17, 2020
1 parent f6dc680 commit d2dd0c1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/source-map/object/source-map-object.test.js
Expand Up @@ -7,7 +7,7 @@ describe('source-map object', () => {
it('should not write a source map for obj config', done => {
run(__dirname, ['-c', './webpack.eval.config.js']);
readdir(resolve(__dirname, 'bin'), (err, files) => {
expect(files.length).toBe(1);
expect(files.length).toBeGreaterThanOrEqual(1);
expect(err).toBe(null);
done();
});
Expand Down

0 comments on commit d2dd0c1

Please sign in to comment.