mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
12 lines
238 B
TypeScript
12 lines
238 B
TypeScript
describe("Page /404", () => {
|
|
beforeEach(() => {
|
|
return cy.visit("/404", { failOnStatusCode: false })
|
|
})
|
|
|
|
it("should display the statusCode of 404", () => {
|
|
cy.get("[data-cy=status-code]").contains("404")
|
|
})
|
|
})
|
|
|
|
export {}
|