Increase timeout waiting for home screen after login in cypress test (#9370)

* Increase timeout waiting for home screen after login in cypress test
pull/28788/head^2
Michael Weimann 2022-10-07 10:50:57 +02:00 committed by GitHub
parent c9f5d57fa0
commit 20ce0e6c8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ describe("Login", () => {
cy.startMeasuring("from-submit-to-home");
cy.get(".mx_Login_submit").click();
cy.url().should('contain', '/#/home');
cy.url().should('contain', '/#/home', { timeout: 30000 });
cy.stopMeasuring("from-submit-to-home");
});
});