Files
moltbot/vitest.commands.config.ts
2026-04-04 04:37:08 +01:00

13 lines
354 B
TypeScript

import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
export function createCommandsVitestConfig(env?: Record<string, string | undefined>) {
return createScopedVitestConfig(["src/commands/**/*.test.ts"], {
dir: "src/commands",
env,
name: "commands",
pool: "forks",
});
}
export default createCommandsVitestConfig();