import { expect, test } from "@playwright/test"; test("boots the public app shell", async ({ page }) => { await page.goto("/"); await expect(page.getByRole("heading", { level: 1 })).toHaveText( "Clean Architecture Frontend", ); });