Files
openclaw/src/auto-reply/reply/commands-spawn.test-harness.ts
2026-02-17 00:11:02 +00:00

12 lines
413 B
TypeScript

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<MsgContext>,
) {
return buildBaseCommandTestParams(commandBody, cfg, ctxOverrides);
}