mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
tests: make the waitFor helper more reliable and less spammy (#4065)
This commit is contained in:
parent
520b20a3ca
commit
5000997a9f
1 changed files with 2 additions and 2 deletions
|
@ -149,8 +149,8 @@ var helper = {};
|
|||
}
|
||||
|
||||
helper.waitFor = function(conditionFunc, _timeoutTime, _intervalTime){
|
||||
var timeoutTime = _timeoutTime || 1000;
|
||||
var intervalTime = _intervalTime || 10;
|
||||
var timeoutTime = _timeoutTime || 10000;
|
||||
var intervalTime = _intervalTime || 100;
|
||||
|
||||
var deferred = $.Deferred();
|
||||
|
||||
|
|
Loading…
Reference in a new issue