Skip to content

Commit

Permalink
specs: add e2e spec for accessibilit page
Browse files Browse the repository at this point in the history
  • Loading branch information
fuuuzz committed Nov 19, 2024
1 parent 04a20bc commit c2d50f5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions client/tests/e2e/accessibilite.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { expect, test } from '@playwright/test';

test('accessibilite page has expected h1', async ({ page }) => {
await page.goto('/');
await expect(page.locator('h1')).toBeVisible();
});

0 comments on commit c2d50f5

Please sign in to comment.