mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
18 lines
657 B
TypeScript
18 lines
657 B
TypeScript
// Vitest extension codex app server attempt config wires the extension codex app server attempt test shard.
|
|
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
|
|
|
|
export function createExtensionCodexAppServerAttemptVitestConfig(
|
|
env: Record<string, string | undefined> = process.env,
|
|
) {
|
|
return createScopedVitestConfig(["extensions/codex/src/app-server/run-attempt.test.ts"], {
|
|
dir: "extensions",
|
|
env,
|
|
fileParallelism: false,
|
|
name: "extension-codex-app-server-attempt",
|
|
passWithNoTests: true,
|
|
setupFiles: ["test/setup.extensions.ts"],
|
|
});
|
|
}
|
|
|
|
export default createExtensionCodexAppServerAttemptVitestConfig();
|