Feat: Changes

This commit is contained in:
Bruno
2023-05-16 18:47:13 +02:00
parent 0a24f2eb52
commit e0bf5dc02a
31 changed files with 8035 additions and 0 deletions
+6
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();
});