Files
copilotkit__copilotkit/showcase/scripts/vitest.config.ts
Jordan Ritter d8d889aebf chore: remove dead demo-wrapper/error-boundary files, regenerate shell data
Remove orphaned demo-wrapper.tsx (1 file) and error-boundary.tsx (17 files)
that still imported from the deleted @copilotkit/showcase-shared.
Regenerate registry.json, demo-content.json, and starter-content.json.
2026-04-14 12:57:32 -07:00

13 lines
421 B
TypeScript

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
testTimeout: 30000,
// Run test files sequentially — create-integration creates temp dirs
// that generate-registry would choke on if run concurrently
fileParallelism: false,
// Exclude Playwright E2E tests — they use @playwright/test, not vitest
exclude: ["__tests__/e2e/**", "node_modules/**"],
},
});