We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06b3d91 commit 4b48017Copy full SHA for 4b48017
test/cli/cli.test.js
@@ -51,10 +51,9 @@ describe('CLI', () => {
51
.catch(done);
52
});
53
54
- // TODO: do not skip after the major version is bumped
55
- // https://github.com/webpack/webpack-cli/commit/7c5a2bae49625ee4982d7478b7e741968731cea2
56
- it.skip('--hot-only', (done) => {
57
- testBin('--hot-only')
+ it('--hot-only', (done) => {
+ // need detailed stats to check for 'only-dev-server.js'
+ testBin('--hot-only --stats detailed')
58
.then((output) => {
59
expect(output.exitCode).toEqual(0);
60
expect(output.stderr).toContain('/hot/only-dev-server');
0 commit comments