12 lines
413 B
TypeScript
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);
|
|
}
|