Skip to content

Commit

Permalink
Try again at fixing CI by upping timeout (necessary for node v6)
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaceK33z committed Feb 25, 2018
1 parent dfe137c commit eedf10f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/cli.test.js
Expand Up @@ -16,15 +16,15 @@ describe('CLI Dependencies', () => {
});

describe('CLI', () => {
it('--progress', (done) => {
it.only('--progress', (done) => {
runDevServer('--progress')
.then((output) => {
assert(output.code === 0);
assert(output.stderr.indexOf('0% compiling') >= 0);
done();
})
.catch(done);
}).timeout(8000);
}).timeout(18000);

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

0 comments on commit eedf10f

Please sign in to comment.