Files
openclaw/test/vitest/vitest.agents-tools.config.ts
2026-06-04 20:40:11 -04:00

15 lines
499 B
TypeScript

// Vitest agents tools config wires the agents tools test shard.
import { agentsToolsTestPatterns } from "./vitest.agents-paths.mjs";
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
export function createAgentsToolsVitestConfig(env?: Record<string, string | undefined>) {
return createScopedVitestConfig(agentsToolsTestPatterns, {
dir: "src/agents",
env,
fileParallelism: false,
name: "agents-tools",
});
}
export default createAgentsToolsVitestConfig();