[INIT] svelte frontend demo app

This commit is contained in:
Marie Birner
2023-06-16 20:11:42 +02:00
parent 9bdbfdaedb
commit 00afae10e1
38 changed files with 19776 additions and 0 deletions

6
rot_app/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();
});