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