refactor(e2e): removed sign-up redirection

This commit is contained in:
sumit_chaturvedi
2025-06-25 14:50:36 +05:30
parent 5e8385607a
commit 498a38634c
-3
View File
@@ -4,7 +4,4 @@ test('Unauthenticated users are redirected to sign-in and can navigate to sign-u
await page.goto('/');
await expect(page).toHaveURL(/\/sign-in/);
await expect(page.getByText('Sign In')).toBeVisible();
await page.getByRole('link', { name: /sign up/i }).click();
await expect(page).toHaveURL(/\/sign-up/);
});