mirror of
https://github.com/nexu-io/open-design.git
synced 2026-06-01 03:14:35 +07:00
* chore: pin dependency versions * ci: enforce pinned dependency specs * ci: fix pnpm executable invocation
13 lines
418 B
TypeScript
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,
|
|
},
|
|
});
|