From bf662851f624e4ae72a1fceef5075316b8097ec9 Mon Sep 17 00:00:00 2001 From: Kerry Date: Fri, 7 Oct 2022 11:35:32 +0200 Subject: [PATCH] Cypress - increase initial app load timeout to 30s (#9361) --- cypress/support/login.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/support/login.ts b/cypress/support/login.ts index 4cdfd6a84d..46b1b7a89f 100644 --- a/cypress/support/login.ts +++ b/cypress/support/login.ts @@ -97,7 +97,7 @@ Cypress.Commands.add("initTestUser", (synapse: SynapseInstance, displayName: str return cy.visit("/").then(() => { // wait for the app to load - return cy.get(".mx_MatrixChat", { timeout: 15000 }); + return cy.get(".mx_MatrixChat", { timeout: 30000 }); }).then(() => ({ password, accessToken: response.body.access_token,