Files
openclaw/vitest.commands.config.ts
2026-04-04 02:08:44 +01:00

11 lines
313 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,
});
}
export default createCommandsVitestConfig();