🎉 npm create svelte

This commit is contained in:
2023-01-25 22:48:12 -05:00
commit bcb423f8c1
19 changed files with 5416 additions and 0 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');
});