Skip to content

Commit

Permalink
increase timeout in watch test for CI
Browse files Browse the repository at this point in the history
the same code should be in PR #4240
  • Loading branch information
boneskull committed Apr 24, 2020
1 parent e2c9c96 commit 7ddcf5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/options/watch.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -296,9 +296,9 @@ function runMochaWatch(args, cwd, change) {
{cwd, stdio: 'pipe'}
);

return sleep(1000)
return sleep(2000)
.then(() => change(mochaProcess))
.then(() => sleep(1000))
.then(() => sleep(2000))
.then(() => {
mochaProcess.kill('SIGINT');
return resultPromise;
Expand Down

0 comments on commit 7ddcf5f

Please sign in to comment.