takeover of old passkey learning repo

This commit is contained in:
Samuel Andert
2023-07-10 17:09:35 +02:00
parent 991eeacfbe
commit d8a335c001
36 changed files with 5192 additions and 142 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');
});