From 4cf278464e262ba3d560a5a9d02d9544087cecf4 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Sun, 15 Feb 2026 12:33:43 -0800 Subject: [PATCH] 4643 --- e2e/cypress.json | 3 ++- e2e/tests/regression/1-smoke/014-nav-menu.cy.js | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/e2e/cypress.json b/e2e/cypress.json index 8a0f061..4cd8135 100644 --- a/e2e/cypress.json +++ b/e2e/cypress.json @@ -10,6 +10,7 @@ "admin": { "login": "superuser", "password": "l3tm3in" }, "accounting": { "login": "Accounting", "password": "Accounting" }, "service": { "login": "Service", "password": "Service" }, - "customer": { "login": "Customer", "password": "Customer" } + "customer": { "login": "Customer", "password": "Customer" }, + "bizadmin": { "login": "BizAdmin", "password": "BizAdmin" } } } \ No newline at end of file diff --git a/e2e/tests/regression/1-smoke/014-nav-menu.cy.js b/e2e/tests/regression/1-smoke/014-nav-menu.cy.js index d39d337..514b269 100644 --- a/e2e/tests/regression/1-smoke/014-nav-menu.cy.js +++ b/e2e/tests/regression/1-smoke/014-nav-menu.cy.js @@ -1,11 +1,11 @@ // Basic nav and menu test just to confirm each section menu works describe("SMOKE NAV", () => { it("Nav and menu functions correctly", () => { - cy.ayLogin("admin"); + cy.ayLogin("bizadmin"); cy.get("[data-cy=navicon]").click(); cy.get("[data-cy=home]").click(); - cy.get("[data-cy='nav/home-dashboard']").click();//26fail Timed out retrying after 5000ms: Expected to find element: [data-cy='nav/home-dashboard'], but never found it. + cy.get("[data-cy='nav/home-dashboard']").click(); cy.get("[data-cy=generalerror]").should("not.exist"); cy.get("[data-cy=navicon]").click();