Files
archived-next-auth/packages/frameworks-sveltekit/tests/test.ts
Balázs Orbán b157554a5f chore: move
2022-12-13 21:33:27 +01:00

7 lines
200 B
TypeScript

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")
})