import { createScopedVitestConfig } from "./vitest.scoped-config.ts"; import { autoReplyReplySubtreeTestInclude } from "./vitest.test-shards.mjs"; export function createAutoReplyReplyVitestConfig(env?: Record) { return createScopedVitestConfig([...autoReplyReplySubtreeTestInclude], { dir: "src/auto-reply", env, name: "auto-reply-reply", }); } export default createAutoReplyReplyVitestConfig();