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

pull/4074/head
John McLear 2020-05-31 20:11:33 +00:00
parent c9c2adbdb3
commit 4f37865d97
1 changed files with 1 additions and 1 deletions

View File

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