import type { OpenClawConfig } from "../../config/config.js"; import type { MsgContext } from "../templating.js"; import { buildCommandTestParams as buildBaseCommandTestParams } from "./commands.test-harness.js"; export function buildCommandTestParams( commandBody: string, cfg: OpenClawConfig, ctxOverrides?: Partial, ) { return buildBaseCommandTestParams(commandBody, cfg, ctxOverrides); }