18874: Try a different login timeout.
authorTom Clegg <tom@curii.com>
Tue, 14 Nov 2023 04:53:03 +0000 (23:53 -0500)
committerTom Clegg <tom@curii.com>
Tue, 14 Nov 2023 04:53:03 +0000 (23:53 -0500)
Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom@curii.com>

services/workbench2/cypress/support/commands.js

index c9170bb33827a6867f49c63e54c3fb57e3af4207..135f9cfd6d0c704d2c81c762e5c97479f3f23e94 100644 (file)
@@ -352,7 +352,7 @@ Cypress.Commands.add("loginAs", user => {
     cy.clearCookies();
     cy.clearLocalStorage();
     cy.visit(`/token/?api_token=${user.token}`);
-    cy.url().should("contain", "/projects/");
+    cy.url({ timeout: 15000 }).should("contain", "/projects/");
     cy.get("div#root").should("contain", "Arvados Workbench (zzzzz)");
     cy.get("div#root").should("not.contain", "Your account is inactive");
 });