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

25 lines
931 B
TypeScript

import { test, expect } from "@playwright/test";
// E2E smoke for the agentic-chat-reasoning demo (AWS Strands showcase).
//
// This is intentionally a page-load smoke test. The Strands package reuses a
// single shared backend agent across every demo, so the per-demo coverage is
// behavioral (see the corresponding LangGraph-Python spec for the full
// interaction flow). This spec asserts the page mounts and the CopilotKit
// provider initializes without throwing.
test("agentic-chat-reasoning loads without errors", async ({ page }) => {
const errors: string[] = [];
page.on("pageerror", (err) => errors.push(err.message));
await page.goto("/demos/agentic-chat-reasoning");
// Wait for React to hydrate by waiting for the body to be attached.
await page.waitForLoadState("domcontentloaded");
expect(
errors,
`page errors on /demos/agentic-chat-reasoning: ${errors.join(" | ")}`,
).toEqual([]);
});