This commit is contained in:
2023-05-27 15:38:45 +02:00
parent 37a0015026
commit 106aefb85b
97 changed files with 4613 additions and 12059 deletions

6
tests/test.ts 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');
});