test(frontend): basic e2e testing framework

This commit is contained in:
2025-12-29 17:30:25 +01:00
parent ac75494f6d
commit 7dbc746242
8 changed files with 588 additions and 601 deletions
+6
View File
@@ -0,0 +1,6 @@
import { expect, test } from '@playwright/test';
test('page loads', async ({ page }) => {
await page.goto('/');
await expect(page.locator('main')).toBeVisible();
});