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

9 lines
291 B
TypeScript

import { test, expect } from "@playwright/test";
test.describe("Agentic Chat (Reasoning)", () => {
test("chat input is visible", async ({ page }) => {
await page.goto("/demos/agentic-chat-reasoning");
await expect(page.getByPlaceholder("Type a message")).toBeVisible();
});
});