mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 14:30:45 +00:00
13 lines
386 B
TypeScript
13 lines
386 B
TypeScript
import { agentsAllTestPatterns } from "./vitest.agents-paths.mjs";
|
|
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
|
|
|
|
export function createAgentsVitestConfig(env?: Record<string, string | undefined>) {
|
|
return createScopedVitestConfig(agentsAllTestPatterns, {
|
|
dir: "src/agents",
|
|
env,
|
|
name: "agents",
|
|
});
|
|
}
|
|
|
|
export default createAgentsVitestConfig();
|