mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
Update responsiveness.js
Changing allowed delay from 300 to 400 because Safari OSX is consistently slow compared to every other modern browser.
This commit is contained in:
parent
8b0baa9679
commit
4434e54368
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ describe('Responsiveness of Editor', function() {
|
|||
var end = Date.now(); // get the current time
|
||||
var delay = end - start; // get the delay as the current time minus the start time
|
||||
|
||||
expect(delay).to.be.below(300);
|
||||
expect(delay).to.be.below(400);
|
||||
done();
|
||||
}, 1000);
|
||||
|
||||
|
|
Loading…
Reference in a new issue