webui: Update

This commit is contained in:
Thomas Klaehn
2023-02-09 09:47:49 +01:00
parent 8c110e845b
commit b5fad5d100
28 changed files with 4288 additions and 828 deletions

6
webui/tests/test.js 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.locator('h1')).toHaveText('About this app');
});