From 0f05f050c20fbbcf665110c6a7ed88b8e2b8223b Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Fri, 4 Dec 2020 00:43:21 +0000 Subject: [PATCH] --- ayanova/tests/e2e/specs/smoke.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ayanova/tests/e2e/specs/smoke.js b/ayanova/tests/e2e/specs/smoke.js index be1139f0..74718f69 100644 --- a/ayanova/tests/e2e/specs/smoke.js +++ b/ayanova/tests/e2e/specs/smoke.js @@ -71,6 +71,10 @@ describe("SMOKE", () => { cy.url().should("include", "/cust-head-offices"); cy.get("[data-cy=headofficesTable]"); + cy.visit("/cust-head-offices/1"); + cy.url().should("include", "cust-head-offices/1"); + cy.get("[data-cy=name]"); + cy.visit("/cust-users"); cy.url().should("include", "/cust-users"); cy.get("[data-cy=custUsersTable]"); @@ -151,6 +155,10 @@ describe("SMOKE", () => { cy.url().should("include", "/vendors"); cy.get("[data-cy=underconstruction]"); + cy.visit("/vendors/1"); + cy.url().should("include", "vendors/1"); + cy.get("[data-cy=name]"); + cy.visit("/acc-accounting"); cy.url().should("include", "/acc-accounting"); cy.get("[data-cy=underconstruction]");