mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 03:12:42 +01:00
informative: add comment for timeouts during tests
This commit is contained in:
parent
ac54bf4909
commit
5e1b823887
1 changed files with 4 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue