first commit

This commit is contained in:
2024-02-23 20:48:46 +01:00
commit 15fe7fa703
56 changed files with 18071 additions and 0 deletions

6
tests/test.js Normal file
View File

@ -0,0 +1,6 @@
import { expect, test } from '@playwright/test';
test('index page has expected h1', async ({ page }) => {
await page.goto('/');
expect(await page.textContent('h1')).toBe('Welcome to SvelteKit');
});