mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-19 00:52:10 -06:00
12 lines
491 B
TypeScript
12 lines
491 B
TypeScript
// Vitest extension codex config wires the extension codex test shard.
|
|
import { codexExtensionTestRoots } from "./vitest.extension-codex-paths.mjs";
|
|
import { createExtensionVitestConfig } from "./vitest.extension-config.ts";
|
|
|
|
function createExtensionCodexVitestConfig(env: Record<string, string | undefined> = process.env) {
|
|
return createExtensionVitestConfig("codex", codexExtensionTestRoots, env, {
|
|
fileParallelism: false,
|
|
});
|
|
}
|
|
|
|
export default createExtensionCodexVitestConfig();
|