Files
OmniRoute/vitest.mcp.config.ts
Paijo 43b1392876 fix(autoCombo): rotate across all connections, never waste provider capacity (#3078)
Integrated into release/v3.8.9. Clean merge, all 146 vitest tests pass.
2026-06-03 06:36:47 -03:00

32 lines
817 B
TypeScript

import { defineConfig } from "vitest/config";
import path from "path";
export default defineConfig({
test: {
environment: "node",
globals: true,
pool: "threads",
maxWorkers: 20,
fileParallelism: true,
maxConcurrency: 20,
include: [
"open-sse/mcp-server/__tests__/**/*.test.ts",
"open-sse/services/autoCombo/__tests__/**/*.test.ts",
"tests/unit/autoCombo/**/*.test.ts",
"tests/unit/encryption.spec.ts",
"src/shared/components/**/*.test.tsx",
"src/shared/hooks/__tests__/**/*.test.tsx",
"src/app/(dashboard)/**/__tests__/**/*.test.tsx",
],
exclude: ["**/node_modules/**", "**/.git/**"],
coverage: {
reportsDirectory: "coverage",
},
},
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
});