Increase delay to stabilise async tests (#8357)

This commit is contained in:
Michael Telatynski 2022-04-19 17:21:31 +01:00 committed by GitHub
parent bca9caa98e
commit f099fdb906
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -92,7 +92,7 @@ export async function redactThreadMessage(session: ElementSession): Promise<void
session.log.done(); session.log.done();
await session.query(".mx_ThreadView .mx_RedactedBody"); await session.query(".mx_ThreadView .mx_RedactedBody");
await session.delay(200); // give the app a chance to settle await session.delay(1000); // give the app a chance to settle
session.log.endGroup(); session.log.endGroup();
} }