aboutsummaryrefslogtreecommitdiff
path: root/tests/test.js
blob: cb82a829d6a23949a3d013a38394378a71a03c9b (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("home");
});