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

* Increase timeout waiting for home screen after login in cypress test
This commit is contained in:
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

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");
});
});