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 dfe137c commit eedf10fCopy full SHA for eedf10f
test/cli.test.js
@@ -16,15 +16,15 @@ describe('CLI Dependencies', () => {
16
});
17
18
describe('CLI', () => {
19
- it('--progress', (done) => {
+ it.only('--progress', (done) => {
20
runDevServer('--progress')
21
.then((output) => {
22
assert(output.code === 0);
23
assert(output.stderr.indexOf('0% compiling') >= 0);
24
done();
25
})
26
.catch(done);
27
- }).timeout(8000);
+ }).timeout(18000);
28
29
it('should exit the process when SIGINT is detected', (done) => {
30
const cliPath = path.resolve(__dirname, '../bin/webpack-dev-server.js');
0 commit comments