This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
website/cypress/e2e/pages/400.cy.ts

12 lines
233 B
TypeScript
Raw Normal View History

describe("Page > /404", () => {
2021-10-24 05:48:06 +02:00
beforeEach(() => {
cy.visit("/404", { failOnStatusCode: false })
2021-10-24 05:48:06 +02:00
})
it("should display the statusCode of 404", () => {
cy.get("[data-cy=status-code]").contains("404")
2021-10-24 05:48:06 +02:00
})
})
export {}