From 20ce0e6c8c832a431ec01eba433e375bf69d9011 Mon Sep 17 00:00:00 2001 From: Michael Weimann Date: Fri, 7 Oct 2022 10:50:57 +0200 Subject: [PATCH] Increase timeout waiting for home screen after login in cypress test (#9370) * Increase timeout waiting for home screen after login in cypress test --- cypress/e2e/login/login.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/login/login.spec.ts b/cypress/e2e/login/login.spec.ts index ea3a5239f0..2ba2e33f9b 100644 --- a/cypress/e2e/login/login.spec.ts +++ b/cypress/e2e/login/login.spec.ts @@ -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"); }); });