mirror of https://github.com/openclaw/openclaw.git
12 lines
310 B
TypeScript
12 lines
310 B
TypeScript
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
|
|
|
|
export function createAcpVitestConfig(env?: Record<string, string | undefined>) {
|
|
return createScopedVitestConfig(["src/acp/**/*.test.ts"], {
|
|
dir: "src/acp",
|
|
env,
|
|
name: "acp",
|
|
});
|
|
}
|
|
|
|
export default createAcpVitestConfig();
|