From a78839e60cdb3ef9867ebaeaecc9c9cd57865459 Mon Sep 17 00:00:00 2001 From: cpojer Date: Tue, 17 Feb 2026 11:07:36 +0900 Subject: [PATCH] chore: Fix Slack test. --- src/slack/monitor/events/interactions.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/slack/monitor/events/interactions.test.ts b/src/slack/monitor/events/interactions.test.ts index c5a1660ace..d4e6982d3f 100644 --- a/src/slack/monitor/events/interactions.test.ts +++ b/src/slack/monitor/events/interactions.test.ts @@ -229,6 +229,7 @@ describe("registerSlackInteractionEvents", () => { }); it("ignores malformed action payloads after ack and logs warning", async () => { + enqueueSystemEventMock.mockReset(); const { ctx, app, getHandler, runtimeLog } = createContext(); registerSlackInteractionEvents({ ctx: ctx as never }); const handler = getHandler();