feat(setup): initialize SvelteKit project with TypeScript template

This commit is contained in:
Ilia Mashkov
2025-12-26 14:26:37 +03:00
parent 42852a77e1
commit cd7c4ef9a3
23 changed files with 14124 additions and 93 deletions

6
e2e/demo.test.ts Normal file
View File

@@ -0,0 +1,6 @@
import { expect, test } from '@playwright/test';
test('home page has expected h1', async ({ page }) => {
await page.goto('/');
await expect(page.locator('h1')).toBeVisible();
});