2021-08-13 15:48:29 +02:00
|
|
|
describe('Page /500', () => {
|
|
|
|
beforeEach(() => cy.visit('/500', { failOnStatusCode: false }))
|
|
|
|
|
|
|
|
it('should display the statusCode of 500', () => {
|
|
|
|
cy.get('[data-cy=status-code]').contains('500')
|
|
|
|
})
|
|
|
|
})
|
2022-07-28 22:51:12 +02:00
|
|
|
|
|
|
|
export {}
|