mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-01 11:48:42 -05:00
9 lines
206 B
TypeScript
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");
|
|
});
|
|
});
|