summaryrefslogtreecommitdiffstats
path: root/apps/frontpage/tests/test.js
blob: 68d7b7ec482cddecaa0dab177b97da39e9b7f837 (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("About");
});