mirror of
https://github.com/JasonHHouse/gaps.git
synced 2026-02-21 11:58:37 -06:00
11 lines
273 B
JavaScript
Executable File
11 lines
273 B
JavaScript
Executable File
describe('Check Error Page', function () {
|
|
|
|
it('Does error page load', () => {
|
|
cy.request({url: '/bad', method: 'GET', failOnStatusCode: false})
|
|
.should((response) => {
|
|
expect(response.status).to.eq(404)
|
|
});
|
|
});
|
|
|
|
});
|