mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
d8d889aebf
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.
13 lines
421 B
TypeScript
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/**"],
|
|
},
|
|
});
|