mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-08 18:22:55 +00:00
14 lines
434 B
TypeScript
14 lines
434 B
TypeScript
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();
|