mirror of
https://github.com/YuzuZensai/Pien-Studio.git
synced 2026-09-02 14:18:35 +00:00
8 lines
289 B
TypeScript
8 lines
289 B
TypeScript
import { expect, test } from "@playwright/test";
|
|||
|
|
|
||
|
|
test("home page loads and shows mood presets", async ({ page }) => {
|
||
|
|
await page.goto("/");
|
||
|
|
await expect(page.getByText("Project Hub")).toBeVisible();
|
||
|
|
await expect(page.getByRole("button", { name: "New Project" })).toBeVisible();
|
||
|
|
});
|