2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-07-03 01:03:41 -04:00

Add Initial WebApp

This commit is contained in:
2024-04-14 21:48:31 +10:00
parent 6c2e2c23f3
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();
});