sendou.ink/cypress/e2e/misc.cy.ts
2022-07-16 13:21:01 +03:00

9 lines
206 B
TypeScript

export {};
describe("404 page", () => {
it("should say 404 if accessing URL that doesn't exist", () => {
cy.visit("/plus/idonotexist", { failOnStatusCode: false });
cy.contains("404");
});
});