From d06ff8c93c7c736b1fe93584567a613fa96f37e1 Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Tue, 19 Dec 2017 15:56:54 +0100 Subject: [PATCH] Double default WaitForTimeout --- scripts/e2e.js | 2 +- test/e2e/globals.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/e2e.js b/scripts/e2e.js index 2f99bc5d9..d1d06e99a 100755 --- a/scripts/e2e.js +++ b/scripts/e2e.js @@ -205,7 +205,7 @@ program .option('-r, --retries [number]', 'Number of retries before failing', '1') .option('--headless', 'Start in headless mode for local e2e') .option('--reports-folder [folder]', 'Reports folder', './test/e2e/reports') - .option('--timeout [number]', 'Timeout for WaitForConditions', '5000') + .option('--timeout [number]', 'Timeout for WaitForConditions', '10000') .parse(process.argv); start(program); diff --git a/test/e2e/globals.js b/test/e2e/globals.js index 10549e2e7..09b297a24 100644 --- a/test/e2e/globals.js +++ b/test/e2e/globals.js @@ -11,7 +11,7 @@ module.exports = { shutdown(); done(); }, - waitForConditionTimeout: parseInt(process.env.WAIT_FOR_TIMEOUT) || 5000, + waitForConditionTimeout: parseInt(process.env.WAIT_FOR_TIMEOUT) || 10000, testData: { admin: { email: 'admin@test.com',