jacksmith is gay

This commit is contained in:
2023-04-06 10:24:33 +05:00
parent f5f05c1908
commit 54f76891d3
25 changed files with 5126 additions and 5133 deletions

6
tests/test.js 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();
});