test: add playwright (resolves #12)
Commit / ci (push) Successful in 10m29s
PullRequest / publish (pull_request) Failing after 2m16s

This commit is contained in:
2026-04-03 13:27:23 +02:00
parent 2e16cf9d51
commit b3a2c80b60
5 changed files with 80 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
import { expect, test } from '@playwright/test';
test('index page loads', async ({ page }) => {
await page.goto('/');
await expect(page.locator('body')).toBeVisible();
});