more realistic timeouts for slower devices

This commit is contained in:
John McLear 2021-01-27 05:22:24 +00:00
parent 929859042c
commit a6406663f4
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ describe('change user color', function () {
}); });
it('Color picker remembers the user color after a refresh', function (done) { it('Color picker remembers the user color after a refresh', function (done) {
this.timeout(5000); this.timeout(10000);
const chrome$ = helper.padChrome$; const chrome$ = helper.padChrome$;
// click on the settings button to make settings visible // click on the settings button to make settings visible

View file

@ -4,7 +4,7 @@ describe('chat-load-messages', function () {
let padName; let padName;
it('creates a pad', function (done) { it('creates a pad', function (done) {
this.timeout(3000); this.timeout(5000);
padName = helper.newPad(done); padName = helper.newPad(done);
}); });