Files
stack/apps/orchestrator/tests/performance/vitest.config.ts
T
Jason WoltjeandClaude Opus 4.5 b93f4c59ce test(#229): Add performance test suite for orchestrator
Add 14 performance benchmarks across 3 test files:
- Spawner throughput: single/sequential/concurrent spawn latency,
  session lookup, list performance, memory efficiency
- Queue service: backoff calculation throughput, validation perf
- Secret scanner: content scanning throughput, pattern scalability

Adds test:perf script to package.json.

Fixes #229

Co-Authored-By: Claude Opus 4.5 <[email protected]>
2026-02-05 12:52:30 -06:00

11 lines
200 B
TypeScript

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
environment: "node",
include: ["**/*.perf-spec.ts"],
testTimeout: 60000,
},
});