mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
8 lines
210 B
TypeScript
8 lines
210 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')
|
|
})
|
|
})
|