mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-17 08:01:38 +00:00
13 lines
357 B
TypeScript
13 lines
357 B
TypeScript
// Vitest acp config wires the acp test shard.
|
|
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();
|