import { commandsLightTestFiles } from "./vitest.commands-light-paths.mjs"; import { createScopedVitestConfig } from "./vitest.scoped-config.ts"; import { unitFastTestFiles } from "./vitest.unit-fast-paths.mjs"; export function createCommandsLightVitestConfig(env?: Record) { return createScopedVitestConfig(commandsLightTestFiles, { dir: "src/commands", env, exclude: unitFastTestFiles, includeOpenClawRuntimeSetup: false, name: "commands-light", passWithNoTests: true, }); } export default createCommandsLightVitestConfig();