ADHD-Home-Quest/frontend/tests/test.ts
Jonas Pfalzgraf da38227067 init
2024-08-24 18:14:10 +02:00

6 lines
182 B
TypeScript

import { expect, test } from '@playwright/test';
test('home page has expected h1', async ({ page }) => {
await page.goto('/');
await expect(page.locator('h1')).toBeVisible();
});