mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
10 lines
239 B
JavaScript
10 lines
239 B
JavaScript
import { defineConfig } from "vitest/config";
|
|
export default defineConfig({
|
|
test: {
|
|
environment: "node",
|
|
include: ["src/**/__tests__/**/*.test.ts"],
|
|
maxWorkers: 2,
|
|
env: { COPILOTKIT_TELEMETRY_DISABLED: "true" },
|
|
},
|
|
});
|