mirror of
https://github.com/openai/codex.git
synced 2026-09-16 12:13:30 +00:00
13 lines
264 B
TypeScript
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",
|
|
},
|
|
});
|