Files
clean-architecture-frontend…/tests/e2e/app-shell.spec.js
T

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",
);
});