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

9 lines
218 B
TypeScript
Raw Normal View History

2023-02-02 23:56:33 +03:00
import { Page } from "../support/pages";
describe("Dashboard", () => {
it("should redirect to contacts page", () => {
cy.visit(Page.Dashboard);
cy.location("pathname").should("eq", Page.Contacts);
});
});