From a3094b72bb3f29ab3f1e1603a7541fb97cddbfdf Mon Sep 17 00:00:00 2001 From: Christopher Hiller Date: Fri, 24 Apr 2020 14:08:40 -0700 Subject: [PATCH] increase timeout in watch test for CI the same code should be in PR #4240 --- test/integration/options/watch.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/options/watch.spec.js b/test/integration/options/watch.spec.js index f5cd382dee..93297a64d7 100644 --- a/test/integration/options/watch.spec.js +++ b/test/integration/options/watch.spec.js @@ -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;