mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-30 23:06:10 +03:00
10 lines
226 B
JavaScript
10 lines
226 B
JavaScript
context("dev server 404 page", () => {
|
|
beforeEach(() => {
|
|
cy.visit("http://localhost:1234/asdf", { failOnStatusCode: false });
|
|
});
|
|
|
|
it("page not found", () => {
|
|
cy.contains("No route found for /asdf");
|
|
});
|
|
});
|