Files
codex/codex-cli/vitest.config.ts
2025-05-12 21:06:32 -07:00

13 lines
264 B
TypeScript

import { defineConfig } from "vitest/config";
/**
* Vitest configuration for the CLI package.
* Disables worker threads to avoid pool recursion issues in sandbox.
*/
export default defineConfig({
test: {
threads: false,
environment: "node",
},
});