refactor: project into monorepo

This commit is contained in:
Aleksi Lassila
2025-08-09 13:39:48 +03:00
parent b28f3be8b7
commit d831c59647
335 changed files with 25170 additions and 7846 deletions

6
frontend/tests/test.ts Normal file
View File

@@ -0,0 +1,6 @@
import { expect, test } from '@playwright/test';
test('about page has expected h1', async ({ page }) => {
await page.goto('/about');
await expect(page.getByRole('heading', { name: 'About this app' })).toBeVisible();
});