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:
John McLear 2020-09-12 11:00:05 +01:00 committed by GitHub
parent 8b0baa9679
commit 4434e54368
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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);