Files
copilotkit__copilotkit/showcase/integrations/claude-sdk-python/tests/e2e/tool-rendering-default-catchall.spec.ts
Jordan Ritter dd06dd89d1 refactor(showcase): rename packages/ to integrations/
The showcase framework directories better reflect their role as
integration examples rather than distributable packages.
Renames showcase/packages/ -> showcase/integrations/ and updates
the test docker-compose file reference accordingly.
2026-04-28 07:47:35 -07:00

14 lines
409 B
TypeScript

import { test, expect } from "@playwright/test";
test.describe("Tool Rendering (Default Catch-all)", () => {
test.beforeEach(async ({ page }) => {
await page.goto("/demos/tool-rendering-default-catchall");
});
test("chat input is reachable", async ({ page }) => {
await expect(
page.locator('textarea, [placeholder*="message"]').first(),
).toBeVisible({ timeout: 10000 });
});
});