Add Initial WebApp

This commit is contained in:
Ben Parsons 2024-04-14 21:48:31 +10:00
commit c0c69dcdf7
16 changed files with 3880 additions and 1 deletions

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();
});