forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgen-ui-tool-based.spec.ts
More file actions
68 lines (59 loc) · 2.3 KB
/
Copy pathgen-ui-tool-based.spec.ts
File metadata and controls
68 lines (59 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import { test, expect } from "@playwright/test";
// Tool-Based Generative UI demo: a centered <CopilotChat> with two
// useComponent registrations (render_bar_chart + render_pie_chart) plus
// three suggestion pills wired via useConfigureSuggestions. The demo
// has no header / chrome — the chat surface IS the page.
test.describe("Tool-Based Generative UI", () => {
test.beforeEach(async ({ page }) => {
await page.goto("/demos/gen-ui-tool-based");
});
test("page loads with chat composer and the three suggestion pills", async ({
page,
}) => {
await expect(
page.locator('textarea, [placeholder*="message"]').first(),
).toBeVisible({ timeout: 10000 });
for (const title of [
"Sales bar chart",
"Traffic pie chart",
"Market share",
]) {
await expect(
page
.locator('[data-testid="copilot-suggestion"]')
.filter({ hasText: title }),
).toBeVisible({ timeout: 15000 });
}
});
test("pie chart request renders SVG visualization", async ({ page }) => {
const input = page.locator('textarea, [placeholder*="message"]').first();
await input.fill("Show me a pie chart of revenue by category");
await input.press("Enter");
// PieChart renders as Recharts SVG inside the assistant message.
const assistantMessage = page
.locator('[data-testid="copilot-assistant-message"]')
.first();
await expect(assistantMessage.locator("svg").first()).toBeVisible({
timeout: 60000,
});
});
test("bar chart request renders SVG visualization", async ({ page }) => {
const input = page.locator('textarea, [placeholder*="message"]').first();
await input.fill("Show me a bar chart of monthly expenses");
await input.press("Enter");
const assistantMessage = page
.locator('[data-testid="copilot-assistant-message"]')
.first();
await expect(assistantMessage.locator("svg").first()).toBeVisible({
timeout: 60000,
});
});
test("sends message and gets assistant response", async ({ page }) => {
const input = page.locator('textarea, [placeholder*="message"]').first();
await input.fill("Hello");
await input.press("Enter");
await expect(
page.locator('[data-testid="copilot-assistant-message"]').first(),
).toBeVisible({ timeout: 30000 });
});
});