Files
openclaw/test/vitest/vitest.agents-core.config.ts
T
2026-07-28 14:07:02 -04:00

17 lines
554 B
TypeScript

// Vitest agents core config wires the agents core test shard.
import { agentVitestProjectOwners } from "./vitest.agents-paths.mjs";
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
export function createAgentsCoreVitestConfig(env?: Record<string, string | undefined>) {
const owner = agentVitestProjectOwners.core;
return createScopedVitestConfig(owner.include, {
dir: owner.dir,
env,
exclude: owner.exclude,
fileParallelism: false,
name: owner.name,
});
}
export default createAgentsCoreVitestConfig();