tests: Add workaround for Docker file watchers limitation #27

Merged
Ghost merged 10 commits from tests/workaround_file_watchers into development 2021-11-15 23:06:23 -05:00
Showing only changes of commit 2a61366bcf - Show all commits

View File

@ -39,7 +39,7 @@ describe('Url check', () => {
describe('Check page not found', () => { describe('Check page not found', () => {
it('Invalid url should redirect to page not found', () => { it('Invalid url should redirect to page not found', () => {
cy.visit('/ABC') cy.visit('/ABC', {failOnStatusCode: false}).its('status').should('equal', 404)
cy.get('#not-found-message').contains("This page does not exist !"); cy.get('#not-found-message').contains("This page does not exist !");
}) })
}) })