tests: allow tests to run for more than 10 minutes because browsers are slow on saucelabs

This commit is contained in:
John McLear 2020-05-31 20:11:33 +00:00
parent c9c2adbdb3
commit 4f37865d97

View file

@ -50,7 +50,7 @@ var sauceTestWorker = async.queue(function (testSettings, callback) {
//timeout for the case the test hangs //timeout for the case the test hangs
var timeout = setTimeout(function(){ var timeout = setTimeout(function(){
stopSauce(false); stopSauce(false);
}, 60000 * 10); }, 1200000 * 10);
var knownConsoleText = ""; var knownConsoleText = "";
var getStatusInterval = setInterval(function(){ var getStatusInterval = setInterval(function(){