aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test.ts
blob: 5076f5217854f8d40105437f4e3fb43741af3686 (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();
});