mirror of https://github.com/openclaw/openclaw.git
11 lines
305 B
TypeScript
11 lines
305 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,
|
|
});
|
|
}
|
|
|
|
export default createAgentsVitestConfig();
|