From bf96749580d03936fecb46e2983ee5d6ff7ef424 Mon Sep 17 00:00:00 2001 From: Johannes Millan Date: Wed, 13 May 2020 02:30:22 +0200 Subject: [PATCH] chore: allow longer protractor timeouts --- e2e/protractor.conf.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/e2e/protractor.conf.js b/e2e/protractor.conf.js index 837fda89b..ad1fdcdcd 100644 --- a/e2e/protractor.conf.js +++ b/e2e/protractor.conf.js @@ -10,6 +10,7 @@ const args = [ '--window-size=800,600', '--no-sandbox', '--disable-dev-shm-usage', + '--disable-browser-side-navigation', // `--binary=${process.env.CHROME_BIN}` ] @@ -17,7 +18,7 @@ const args = [ * @type { import('protractor').Config } */ exports.config = { - allScriptsTimeout: 11000, + allScriptsTimeout: 60000, specs: [ './src/**/*.e2e-spec.ts' ],