informative: add comment for timeouts during tests

This commit is contained in:
webzwo0i 2020-07-10 21:14:50 +02:00
parent ac54bf4909
commit 5e1b823887

View file

@ -49,7 +49,10 @@ var sauceTestWorker = async.queue(function (testSettings, callback) {
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(){ var timeout = setTimeout(function(){
stopSauce(false); stopSauce(false);
}, 1200000 * 10); }, 1200000 * 10);