diff --git a/cypress/e2e/pages/auth/login.cy.ts b/cypress/e2e/pages/auth/login.cy.ts index 53c764ef..42273090 100644 --- a/cypress/e2e/pages/auth/login.cy.ts +++ b/cypress/e2e/pages/auth/login.cy.ts @@ -37,7 +37,7 @@ describe('Login Page', () => { cy.get('button').contains('Sign In').click(); cy.location('pathname').should('equal', '/login'); - cy.get('Required').should('be.hidden'); + cy.get('Required').should('not.exist'); }); });