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

23 lines
707 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.locator('textarea, [placeholder*="message"]').first(),
).toBeVisible({ timeout: 10000 });
});
test("sends message and gets a reply", async ({ page }) => {
const input = page.locator('textarea, [placeholder*="message"]').first();
await input.fill("hello");
await input.press("Enter");
await expect(page.locator('[data-role="assistant"]').first()).toBeVisible({
timeout: 30000,
});
});
});