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

12 lines
338 B
TypeScript

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