From 824afdceca3a3936806f7982924768f2d4a828f2 Mon Sep 17 00:00:00 2001 From: Patrick Niklaus Date: Thu, 26 May 2016 20:01:53 +0200 Subject: [PATCH] use 5 seconds as cucumber timeout --- features/support/env.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/support/env.js b/features/support/env.js index 621143b44..0f8f0a070 100644 --- a/features/support/env.js +++ b/features/support/env.js @@ -7,7 +7,7 @@ var d3 = require('d3-queue'); module.exports = function () { this.initializeEnv = (callback) => { this.OSRM_PORT = process.env.OSRM_PORT && parseInt(process.env.OSRM_PORT) || 5000; - this.TIMEOUT = process.env.CUCUMBER_TIMEOUT && parseInt(process.env.CUCUMBER_TIMEOUT) || 3000; + this.TIMEOUT = process.env.CUCUMBER_TIMEOUT && parseInt(process.env.CUCUMBER_TIMEOUT) || 5000; this.setDefaultTimeout(this.TIMEOUT); this.ROOT_FOLDER = process.cwd(); this.OSM_USER = 'osrm';