Skip to content

Commit

Permalink
fix: remove auth related test
Browse files Browse the repository at this point in the history
  • Loading branch information
ixartz committed Oct 1, 2024
1 parent 9527aec commit e9bc024
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions tests/e2e/I18n.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,5 @@ test.describe('I18n', () => {
page.getByRole('heading', { name: 'Code de démarrage pour Next.js avec Tailwind CSS' }),
).toBeVisible();
});

test('should switch language from English to French using URL and verify text on the sign-in page', async ({ page }) => {
await page.goto('/sign-in');

await expect(page.getByText('Email address')).toBeVisible();

await page.goto('/fr/sign-in');

await expect(page.getByText('Adresse e-mail')).toBeVisible();
});
});
});

0 comments on commit e9bc024

Please sign in to comment.