increase timeouts so the tests dont timeout on build server

This commit is contained in:
Bruno Windels 2018-08-23 00:27:30 +02:00
parent 1e0baa823d
commit fd67ace078
8 changed files with 16 additions and 16 deletions

View file

@ -25,7 +25,7 @@ module.exports = async function acceptServerNoticesInviteAndConsent(session) {
const termsPage = await termsPagePromise;
const acceptButton = await termsPage.$('input[type=submit]');
await acceptButton.click();
await session.delay(500); //TODO yuck, timers
await session.delay(1000); //TODO yuck, timers
await termsPage.close();
session.log.done();
}
}