aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontend/tests/test.ts
blob: 5816be4132cbc09fd203ac7a972c8d7f35b1572f (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('/');
	await expect(page.getByRole('heading', { name: 'Welcome to SvelteKit' })).toBeVisible();
});