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

12 lines
233 B
TypeScript

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