// Basic smoke test, visit every form to ensure they load describe("SMOKE CUSTOMER SECTION", () => { it("Customer User forms open without error", () => { cy.ayLogin("customer", "/customer-csr"); cy.get("[data-cy=generalerror]").should("not.exist"); cy.get("[data-cy=csrTable]"); cy.visit("/customer-workorders"); cy.url().should("include", "/customer-workorders"); cy.get("[data-cy=generalerror]").should("not.exist"); cy.get("[data-cy=workordersTable]"); //todo: //path: "/customer-workorders/:recordid", //path: "/customer-csr/:recordid" //----------------------------------------------------- }); });