initial setup

This commit is contained in:
Elgius
2023-04-04 21:35:10 +05:00
parent d8df7754c0
commit d5a430a522
18 changed files with 4025 additions and 0 deletions

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