Svelte demo app template project
This commit is contained in:
commit
721dd6a072
29 changed files with 9637 additions and 0 deletions
6
tests/test.js
Normal file
6
tests/test.js
Normal 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');
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue