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