Files
openclaw/test/vitest/vitest.auto-reply-top-level.config.ts
2026-06-04 20:40:11 -04:00

14 lines
535 B
TypeScript

// Vitest auto reply top level config wires the auto reply top level test shard.
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
import { autoReplyTopLevelReplyTestInclude } from "./vitest.test-shards.mjs";
export function createAutoReplyTopLevelVitestConfig(env?: Record<string, string | undefined>) {
return createScopedVitestConfig([...autoReplyTopLevelReplyTestInclude], {
dir: "src/auto-reply",
env,
name: "auto-reply-top-level",
});
}
export default createAutoReplyTopLevelVitestConfig();