mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-09 15:59:30 +00:00
12 lines
404 B
TypeScript
12 lines
404 B
TypeScript
// Vitest auto reply config wires the auto reply test shard.
|
|
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
|
|
|
|
export function createAutoReplyVitestConfig(env?: Record<string, string | undefined>) {
|
|
return createScopedVitestConfig(["src/auto-reply/**/*.test.ts"], {
|
|
dir: "src/auto-reply",
|
|
env,
|
|
name: "auto-reply",
|
|
});
|
|
}
|
|
|
|
export default createAutoReplyVitestConfig();
|