🎉 npm init svelte

This commit is contained in:
2022-04-22 14:20:51 -04:00
commit 856a9cb32c
15 changed files with 8540 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');
});