open-design/apps/daemon/vitest.config.ts
PerishFire bd48c597b0
chore: pin dependency versions and harden CI caches (#2189)
* chore: pin dependency versions

* ci: enforce pinned dependency specs

* ci: fix pnpm executable invocation
2026-05-19 13:58:27 +08:00

13 lines
418 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
environment: 'node',
// These suites mutate process-wide env/PATH and bind real local servers.
// Keep files serial so fake agent binaries stay scoped to their tests.
fileParallelism: false,
include: ['tests/**/*.test.{ts,tsx,js,mjs,cjs}'],
setupFiles: ['tests/setup.ts'],
testTimeout: 20_000,
},
});