vue-psa-architecture/cypress/e2e/dashboard.cy.ts

9 lines
218 B
TypeScript

import { Page } from "../support/pages";
describe("Dashboard", () => {
it("should redirect to contacts page", () => {
cy.visit(Page.Dashboard);
cy.location("pathname").should("eq", Page.Contacts);
});
});