From 0cb6204f157c4ec1078aeb622ea33bbde930da4a Mon Sep 17 00:00:00 2001 From: Christian Budde Christensen Date: Sun, 21 Feb 2016 21:00:40 +0100 Subject: [PATCH] fix: Change timing on test Change the timing on tests, allowing Node 0.10 to catch-up. --- test/e2e/steps/core_steps.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/steps/core_steps.js b/test/e2e/steps/core_steps.js index 014e24283..de79e6f6d 100644 --- a/test/e2e/steps/core_steps.js +++ b/test/e2e/steps/core_steps.js @@ -201,6 +201,6 @@ module.exports = function coreSteps () { if (actualExitCode === undefined) return callback(new Error('Server has not exited.')) if (code === undefined || parseInt(code, 10) === actualExitCode) return callback() callback(new Error('Exit-code mismatch')) - }, 1000) + }, 4000) }) }