mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-09 15:59:30 +00:00
24 lines
864 B
TypeScript
24 lines
864 B
TypeScript
// Vitest extension codex app server attempt light config wires the extension codex app server attempt light test shard.
|
|
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
|
|
|
|
function createExtensionCodexAppServerAttemptLightVitestConfig(
|
|
env: Record<string, string | undefined> = process.env,
|
|
) {
|
|
return createScopedVitestConfig(
|
|
[
|
|
"extensions/codex/src/app-server/attempt-client-cleanup.test.ts",
|
|
"extensions/codex/src/app-server/attempt-diagnostics.test.ts",
|
|
"extensions/codex/src/app-server/attempt-steering.test.ts",
|
|
],
|
|
{
|
|
dir: "extensions",
|
|
env,
|
|
fileParallelism: false,
|
|
name: "extension-codex-app-server-attempt-light",
|
|
passWithNoTests: true,
|
|
setupFiles: ["test/setup.extensions.ts"],
|
|
},
|
|
);
|
|
}
|
|
|
|
export default createExtensionCodexAppServerAttemptLightVitestConfig();
|