Skip to content

Commit eedf10f

Browse files
committed
Try again at fixing CI by upping timeout (necessary for node v6)
1 parent dfe137c commit eedf10f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/cli.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ describe('CLI Dependencies', () => {
1616
});
1717

1818
describe('CLI', () => {
19-
it('--progress', (done) => {
19+
it.only('--progress', (done) => {
2020
runDevServer('--progress')
2121
.then((output) => {
2222
assert(output.code === 0);
2323
assert(output.stderr.indexOf('0% compiling') >= 0);
2424
done();
2525
})
2626
.catch(done);
27-
}).timeout(8000);
27+
}).timeout(18000);
2828

2929
it('should exit the process when SIGINT is detected', (done) => {
3030
const cliPath = path.resolve(__dirname, '../bin/webpack-dev-server.js');

0 commit comments

Comments
 (0)