From ac54bf49097dddc02f33a038d3aaaffa535f3139 Mon Sep 17 00:00:00 2001 From: webzwo0i Date: Fri, 10 Jul 2020 21:12:36 +0200 Subject: [PATCH] include extendedDebugging in webdriver capabilities to get browser console logs --- tests/frontend/travis/remote_runner.js | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/frontend/travis/remote_runner.js b/tests/frontend/travis/remote_runner.js index a4960db4c..6925d9267 100644 --- a/tests/frontend/travis/remote_runner.js +++ b/tests/frontend/travis/remote_runner.js @@ -17,6 +17,7 @@ var sauceTestWorker = async.queue(function (testSettings, callback) { testSettings.name = name; testSettings["public"] = true; testSettings["build"] = process.env.GIT_HASH; + testSettings["extendedDebugging"] = true; // console.json can be downloaded via saucelabs, don't know how to print them into output of the tests testSettings["tunnelIdentifier"] = process.env.TRAVIS_JOB_NUMBER; // we wait 10 seconds here with the hope it was enough time for the minified files to be built etc.