Starting a new template using Svelte, SvelteKit, Tailwind, and Skeleton.

This commit is contained in:
Scott Idem
2024-02-15 09:49:35 -05:00
parent ccbb783378
commit 17d99d080c
58 changed files with 3894 additions and 9127 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('/');
await expect(page.getByRole('heading', { name: 'Welcome to SvelteKit' })).toBeVisible();
});