Files
2026-07-13 12:58:18 +08:00

16 lines
456 B
TypeScript

import { test, expect } from "@playwright/test";
const EXAMPLE = process.env.EXAMPLE ?? "form-filling";
test.describe("chat-with-your-data", () => {
test.skip(EXAMPLE !== "chat-with-your-data", `EXAMPLE=${EXAMPLE}`);
test("loads", async ({ page }) => {
await page.goto("/");
await expect(page).toHaveTitle(/Chat with your data/i);
await expect(
page.getByRole("heading", { name: "Data Dashboard" }),
).toBeVisible();
});
});