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