diff --git a/packages/adapters/openclaw/src/server/execute.ts b/packages/adapters/openclaw/src/server/execute.ts index a1e17a34..5492bfbd 100644 --- a/packages/adapters/openclaw/src/server/execute.ts +++ b/packages/adapters/openclaw/src/server/execute.ts @@ -439,6 +439,13 @@ export async function execute(ctx: AdapterExecutionContext): Promise { const body = JSON.parse(String(fetchMock.mock.calls[0]?.[1]?.body ?? "{}")) as Record; expect(body.mode).toBe("now"); expect(typeof body.text).toBe("string"); + expect(body.paperclip).toBeTypeOf("object"); + expect((body.paperclip as Record).runId).toBe("run-123"); expect(result.resultJson?.compatibilityMode).toBe("wake_text"); expect(result.resultJson?.transportFallback).toBe("webhook"); }); @@ -181,7 +183,8 @@ describe("openclaw adapter execute", () => { const body = JSON.parse(String(fetchMock.mock.calls[0]?.[1]?.body ?? "{}")) as Record; expect(body.mode).toBe("now"); expect(typeof body.text).toBe("string"); - expect(body.paperclip).toBeUndefined(); + expect(body.paperclip).toBeTypeOf("object"); + expect((body.paperclip as Record).runId).toBe("run-123"); }); it("retries with wake text payload when endpoint reports text required in webhook mode", async () => { @@ -215,6 +218,8 @@ describe("openclaw adapter execute", () => { const secondBody = JSON.parse(String(fetchMock.mock.calls[1]?.[1]?.body ?? "{}")) as Record; expect(secondBody.mode).toBe("now"); expect(typeof secondBody.text).toBe("string"); + expect(secondBody.paperclip).toBeTypeOf("object"); + expect((secondBody.paperclip as Record).runId).toBe("run-123"); expect(result.resultJson?.compatibilityMode).toBe("wake_text"); }); });