From c87e70e9d1eddf36ea716f36d36d6be03b977336 Mon Sep 17 00:00:00 2001 From: Faris Ashai Date: Sat, 6 Jan 2024 23:25:07 -0800 Subject: [PATCH] Fix failing test --- cypress/e2e/pages/auth/login.cy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'); }); });