aboutsummaryrefslogtreecommitdiffstats
path: root/code/app-web/tests/test.ts
blob: 4e579377eed92f6ee6c63b5595f38742705fd02e (plain) (blame)
1
2
3
4
5
6
import { expect, test } from '@playwright/test';

test('index page has expected h1', async ({ page }) => {
	await page.goto('/');
	expect(await page.textContent('h1')).toBe('Welcome to SvelteKit');
});