Svelte demo app template project

This commit is contained in:
codevictory 2022-03-10 22:08:33 +02:00
commit 721dd6a072
29 changed files with 9637 additions and 0 deletions

6
tests/test.js Normal file
View file

@ -0,0 +1,6 @@
import { expect, test } from '@playwright/test';
test('about page has expected h1', async ({ page }) => {
await page.goto('/about');
expect(await page.textContent('h1')).toBe('About this app');
});