mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-12 01:31:08 +00:00
15 lines
487 B
TypeScript
15 lines
487 B
TypeScript
import { commandsLightTestFiles } from "./vitest.commands-light-paths.mjs";
|
|
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
|
|
|
|
export function createCommandsLightVitestConfig(env?: Record<string, string | undefined>) {
|
|
return createScopedVitestConfig(commandsLightTestFiles, {
|
|
dir: "src/commands",
|
|
env,
|
|
includeOpenClawRuntimeSetup: false,
|
|
name: "commands-light",
|
|
passWithNoTests: true,
|
|
});
|
|
}
|
|
|
|
export default createCommandsLightVitestConfig();
|