mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-28 14:34:18 +03:00
8 lines
235 B
JavaScript
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.");
|
|
});
|
|
});
|