mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-06 06:41:08 +00:00
12 lines
325 B
TypeScript
12 lines
325 B
TypeScript
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
|
|
|
|
export function createAgentsVitestConfig(env?: Record<string, string | undefined>) {
|
|
return createScopedVitestConfig(["src/agents/**/*.test.ts"], {
|
|
dir: "src/agents",
|
|
env,
|
|
name: "agents",
|
|
});
|
|
}
|
|
|
|
export default createAgentsVitestConfig();
|