From 5e1b82388774973d513cc0bccf247546ce73e709 Mon Sep 17 00:00:00 2001 From: webzwo0i Date: Fri, 10 Jul 2020 21:14:50 +0200 Subject: [PATCH] informative: add comment for timeouts during tests --- tests/frontend/travis/remote_runner.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/frontend/travis/remote_runner.js b/tests/frontend/travis/remote_runner.js index 6925d9267..4475456dc 100644 --- a/tests/frontend/travis/remote_runner.js +++ b/tests/frontend/travis/remote_runner.js @@ -49,7 +49,10 @@ var sauceTestWorker = async.queue(function (testSettings, callback) { callback(); } - //timeout for the case the test hangs + /** + * timeout for the case the test hangs + * @todo this should be configured in testSettings, see https://wiki.saucelabs.com/display/DOCS/Test+Configuration+Options#TestConfigurationOptions-Timeouts + */ var timeout = setTimeout(function(){ stopSauce(false); }, 1200000 * 10);