test: increased login request timeout in ui tests

This commit is contained in:
Jannat Patel
2025-03-04 12:53:33 +05:30
parent 67304245ba
commit 7cc46629b4

View File

@@ -37,6 +37,7 @@ Cypress.Commands.add("login", (email, password) => {
url: "/api/method/login",
method: "POST",
body: { usr: email, pwd: password },
timeout: 60000,
});
});