9 lines
243 B
JavaScript
9 lines
243 B
JavaScript
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",
|
|
);
|
|
});
|