mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 15:30:47 +00:00
13 lines
406 B
TypeScript
13 lines
406 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,
|
|
name: "agents-tools",
|
|
});
|
|
}
|
|
|
|
export default createAgentsToolsVitestConfig();
|