chore: Auth module revamp (#4335)

Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
This commit is contained in:
Dhruwang Jariwala
2024-11-26 13:58:13 +05:30
committed by GitHub
parent 7598a16b75
commit f80d1b32b7
170 changed files with 2484 additions and 2582 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ test.describe("Email Signup Flow Test", async () => {
await page.getByPlaceholder("work@email.com").press("Tab");
await page.fill('input[name="password"]', password);
await page.press('input[name="password"]', "Enter");
let alertMessage = "user with this email address already exists";
let alertMessage = "User with this email already exists";
await (await page.waitForSelector(`text=${alertMessage}`)).isVisible();
});