increase timeouts so the tests dont timeout on build server
This commit is contained in:
parent
1e0baa823d
commit
fd67ace078
8 changed files with 16 additions and 16 deletions
|
@ -18,7 +18,7 @@ const assert = require('assert');
|
|||
|
||||
module.exports = async function invite(session, userId) {
|
||||
session.log.step(`invites "${userId}" to room`);
|
||||
await session.delay(200);
|
||||
await session.delay(1000);
|
||||
const inviteButton = await session.waitAndQuery(".mx_RightPanel_invite");
|
||||
await inviteButton.click();
|
||||
const inviteTextArea = await session.waitAndQuery(".mx_ChatInviteDialog textarea");
|
||||
|
@ -27,4 +27,4 @@ module.exports = async function invite(session, userId) {
|
|||
const confirmButton = await session.query(".mx_Dialog_primary");
|
||||
await confirmButton.click();
|
||||
session.log.done();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue