mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 18:20:44 +00:00
13 lines
353 B
TypeScript
13 lines
353 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,
|
|
fileParallelism: false,
|
|
name: "agents",
|
|
});
|
|
}
|
|
|
|
export default createAgentsVitestConfig();
|