Files
copilotkit__copilotkit/showcase/integrations/langgraph-fastapi/tests/e2e/reasoning-default.spec.ts
Jordan Ritter 28fee3dadf test(showcase): add 5 missing canonical e2e specs to baseline integrations
The 9 baseline integrations (ag2, agno, crewai-crews, langgraph-fastapi,
langroid, llamaindex, mastra, spring-ai, strands) were page-mirrored from
langgraph-python but the mirror omitted 5 LGP-canonical Playwright specs
whose demos are present on disk:

  - declarative-hashbrown
  - declarative-json-render
  - reasoning-custom
  - reasoning-default
  - threadid-frontend-tool-roundtrip

Copied each spec verbatim (byte-identical) from langgraph-python, which the
baselines mirror. All 5 backing demo directories exist in every baseline.
The specs are framework-agnostic (navigate by route + testid), so no
per-integration edits are needed. Restores apples-to-apples spec parity.
2026-05-31 20:25:57 -07:00

42 lines
1.5 KiB
TypeScript

import { test, expect } from "@playwright/test";
// QA reference: qa/reasoning-default.md
// Demo source: src/app/demos/reasoning-default/page.tsx
//
// This cell does NOT override the `reasoningMessage` slot. CopilotKit's
// built-in `CopilotChatReasoningMessage` renders the reasoning as a
// collapsible card. The page exposes a "Show reasoning" suggestion pill
// whose message matches the aimock fixture in showcase/aimock/d5-all.json,
// so streaming is deterministic in CI.
test.describe("Reasoning: Default", () => {
test.setTimeout(120_000);
test.beforeEach(async ({ page }) => {
await page.goto("/demos/reasoning-default");
});
test("page renders without errors", async ({ page }) => {
await expect(
page.locator('[data-testid="copilot-chat-input"]'),
).toBeVisible();
});
test("Show reasoning pill renders a reasoning-role message", async ({
page,
}) => {
const pill = page.getByRole("button", { name: /Show reasoning/i }).first();
await expect(pill).toBeVisible({ timeout: 30_000 });
await pill.click();
// The cell uses CopilotKit's default `CopilotChatReasoningMessage`,
// which doesn't emit a testid — its visible signal is the
// streaming/complete header label ("Thinking…" while streaming,
// "Thought for …" once complete). Asserting on either label proves
// the reasoning collapsible mounted.
await expect(page.getByText(/Thinking…|Thought for/i).first()).toBeVisible({
timeout: 60_000,
});
});
});