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