more realistic timeouts for slower devices

This commit is contained in:
John McLear 2021-01-27 05:37:54 +00:00
parent 2816820785
commit 21736122a0
5 changed files with 13 additions and 13 deletions

View file

@ -4,12 +4,12 @@ describe('chat-load-messages', function () {
let padName;
it('creates a pad', function (done) {
this.timeout(5000);
this.timeout(20000);
padName = helper.newPad(done);
});
it('adds a lot of messages', function (done) {
this.timeout(5000);
this.timeout(10000);
const chrome$ = helper.padChrome$;
const chatButton = chrome$('#chaticon');
chatButton.click();