2
2
mirror of https://github.com/Thream/website.git synced 2024-07-21 09:28:32 +02:00
website/cypress/e2e/pages/400.cy.ts

12 lines
233 B
TypeScript

describe("Page > /404", () => {
beforeEach(() => {
cy.visit("/404", { failOnStatusCode: false })
})
it("should display the statusCode of 404", () => {
cy.get("[data-cy=status-code]").contains("404")
})
})
export {}