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