From 7cc46629b46941b57fe329c8fb1ee5b20feb19f9 Mon Sep 17 00:00:00 2001 From: Jannat Patel Date: Tue, 4 Mar 2025 12:53:33 +0530 Subject: [PATCH] test: increased login request timeout in ui tests --- cypress/support/commands.js | 1 + 1 file changed, 1 insertion(+) diff --git a/cypress/support/commands.js b/cypress/support/commands.js index ed5c7968..9ed07f0b 100644 --- a/cypress/support/commands.js +++ b/cypress/support/commands.js @@ -37,6 +37,7 @@ Cypress.Commands.add("login", (email, password) => { url: "/api/method/login", method: "POST", body: { usr: email, pwd: password }, + timeout: 60000, }); });