mirror of
https://github.com/theoludwig/theoludwig.git
synced 2025-01-23 13:19:36 +01:00
12 lines
238 B
TypeScript
12 lines
238 B
TypeScript
describe('Page /500', () => {
|
|
beforeEach(() => {
|
|
return cy.visit('/500', { failOnStatusCode: false })
|
|
})
|
|
|
|
it('should display the statusCode of 500', () => {
|
|
cy.get('[data-cy=status-code]').contains('500')
|
|
})
|
|
})
|
|
|
|
export {}
|