feat: coming soon
This commit is contained in:
9
cypress/integration/pages/400.spec.ts
Normal file
9
cypress/integration/pages/400.spec.ts
Normal file
@ -0,0 +1,9 @@
|
||||
describe('Page > /404', () => {
|
||||
beforeEach(() => {
|
||||
cy.visit('/404', { failOnStatusCode: false })
|
||||
})
|
||||
|
||||
it('should display the statusCode of 404', () => {
|
||||
cy.get('[data-cy=status-code]').contains('404')
|
||||
})
|
||||
})
|
9
cypress/integration/pages/500.spec.ts
Normal file
9
cypress/integration/pages/500.spec.ts
Normal file
@ -0,0 +1,9 @@
|
||||
describe('Page > /500', () => {
|
||||
beforeEach(() => {
|
||||
cy.visit('/500', { failOnStatusCode: false })
|
||||
})
|
||||
|
||||
it('should display the statusCode of 500', () => {
|
||||
cy.get('[data-cy=status-code]').contains('500')
|
||||
})
|
||||
})
|
Reference in New Issue
Block a user