microservices/gameboard-service/tests/test.ts

7 lines
225 B
TypeScript
Raw Normal View History

2025-04-22 11:59:50 -07:00
import { expect, test } from "@playwright/test";
test("about page has expected h1", async ({ page }) => {
await page.goto("/about");
await expect(page.getByRole("heading", { name: "About this app" })).toBeVisible();
});