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/integration/pages/500.spec.ts
2021-10-24 05:48:06 +02:00

10 lines
222 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')
})
})