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

View File

@@ -92,7 +92,7 @@ export async function redactThreadMessage(session: ElementSession): Promise<void
session.log.done();
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();
}