Skip to content

Commit

Permalink
ci:fix
Browse files Browse the repository at this point in the history
  • Loading branch information
snitin315 committed Feb 15, 2021
1 parent e01d796 commit c3953bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
8 changes: 2 additions & 6 deletions test/cli/cli.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@ describe('CLI', () => {
)
.then((output) => {
expect(output.exitCode).toEqual(0);
expect(output.stderr).toContain(
'webpack/runtime/hot module replacement'
);
expect(output.stderr).toContain('webpack/hot/dev-server.js');
done();
})
.catch(done);
Expand All @@ -52,9 +50,7 @@ describe('CLI', () => {
)
.then((output) => {
expect(output.exitCode).toEqual(0);
expect(output.stderr).not.toContain(
'webpack/runtime/hot module replacement'
);
expect(output.stderr).not.toContain('webpack/hot/dev-server.js');
done();
})
.catch(done);
Expand Down
3 changes: 2 additions & 1 deletion test/fixtures/cli/verbose-config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
'use strict';

module.exports = {
stats: 'verbose',
entry: './foo.js',
mode: 'development',
stats: 'detailed',
};

0 comments on commit c3953bc

Please sign in to comment.