20 lines
595 B
JavaScript
20 lines
595 B
JavaScript
// Basic smoke test, visit every form to ensure they load
|
|
|
|
describe("SMOKE VENDORS SECTION", () => {
|
|
it("Vendors forms open without error", () => {
|
|
cy.ayLogin("admin");
|
|
cy.visit("/vendors");
|
|
cy.url().should("include", "/vendors");
|
|
cy.get("[data-cy=generalerror]").should("not.exist");
|
|
cy.get("[data-cy=vendorsTable]");
|
|
|
|
cy.visit("/vendors/1");
|
|
cy.url().should("include", "vendors/1");
|
|
cy.get("[data-cy=generalerror]").should("not.exist");
|
|
cy.get("[data-cy=name]");
|
|
|
|
|
|
//-----------------------------------------------------
|
|
});
|
|
});
|