mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 20:40:43 +00:00
14 lines
489 B
TypeScript
14 lines
489 B
TypeScript
import { agentsSupportExcludePatterns, agentsSupportTestPatterns } from "./vitest.agents-paths.mjs";
|
|
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
|
|
|
|
export function createAgentsSupportVitestConfig(env?: Record<string, string | undefined>) {
|
|
return createScopedVitestConfig(agentsSupportTestPatterns, {
|
|
dir: "src/agents",
|
|
env,
|
|
exclude: agentsSupportExcludePatterns,
|
|
name: "agents-support",
|
|
});
|
|
}
|
|
|
|
export default createAgentsSupportVitestConfig();
|