From 5fa1155deb98ee241fffcf1f209eb6851e33dad5 Mon Sep 17 00:00:00 2001 From: Keith Stevens Date: Wed, 18 Jan 2023 14:51:06 +0900 Subject: [PATCH] Deleting a decayed cypress auth check --- website/cypress/e2e/auth/signin.cy.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/website/cypress/e2e/auth/signin.cy.ts b/website/cypress/e2e/auth/signin.cy.ts index 6d57d1f9..2a651f1f 100644 --- a/website/cypress/e2e/auth/signin.cy.ts +++ b/website/cypress/e2e/auth/signin.cy.ts @@ -27,13 +27,6 @@ describe("signin flow", () => { }); }); }); - it("shows the logged in users email address if logged in with email", () => { - const emailAddress = "user@example.com"; - cy.signInWithEmail(emailAddress); - // The user will only see the email address if the window is wide enough, not technically required as even when hidden this will find it in the page. - cy.viewport(1920, 1000); - cy.contains('[data-cy="username"]', emailAddress); - }); }); export {};