12 lines
338 B
TypeScript
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();
|
|
});
|
|
});
|