elm-pages-v3-beta/cypress/e2e/page-changes.cy.js
2022-08-09 06:32:47 -07:00

8 lines
235 B
JavaScript

context("dev server with base path", () => {
it("navigating with a link successfully resolves data sources", () => {
cy.visit("/links");
cy.contains("Root page").click();
cy.contains("This is the index page.");
});
});