Initial Commit

This commit is contained in:
Christian Risi
2024-12-06 15:04:05 +01:00
parent cafff22cf3
commit c7e52fa83b
17 changed files with 1678 additions and 296 deletions

6
e2e/demo.test.js Normal file
View File

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