From 856b5aca2c7e40cf92cef906eab6e112aea5924f Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 22 Feb 2026 00:27:15 +0000 Subject: [PATCH] test(outbound): use lightweight clears in send service setup --- src/infra/outbound/outbound-send-service.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/infra/outbound/outbound-send-service.test.ts b/src/infra/outbound/outbound-send-service.test.ts index 4132da4f8..8880137bf 100644 --- a/src/infra/outbound/outbound-send-service.test.ts +++ b/src/infra/outbound/outbound-send-service.test.ts @@ -19,9 +19,9 @@ import { executePollAction, executeSendAction } from "./outbound-send-service.js describe("executeSendAction", () => { beforeEach(() => { - mocks.dispatchChannelMessageAction.mockReset(); - mocks.sendMessage.mockReset(); - mocks.sendPoll.mockReset(); + mocks.dispatchChannelMessageAction.mockClear(); + mocks.sendMessage.mockClear(); + mocks.sendPoll.mockClear(); }); it("forwards ctx.agentId to sendMessage on core outbound path", async () => {