From 0be2b859517243d3a0c97d503e66787743c4e8fc Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Thu, 23 Apr 2026 05:35:06 +0100 Subject: [PATCH] test: avoid slow followup fallback fixture --- src/auto-reply/reply/followup-runner.test.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/auto-reply/reply/followup-runner.test.ts b/src/auto-reply/reply/followup-runner.test.ts index 7543fd41003..039ed5019de 100644 --- a/src/auto-reply/reply/followup-runner.test.ts +++ b/src/auto-reply/reply/followup-runner.test.ts @@ -1268,12 +1268,17 @@ describe("createFollowupRunner messaging tool dedupe", () => { ok: false, error: "outbound adapter unavailable", }); + const queued = baseQueuedRun(" Feishu "); const { onBlockReply } = await runMessagingCase({ agentResult: { payloads: [{ text: "hello world!" }] }, queued: { - ...baseQueuedRun(" Feishu "), + ...queued, originatingChannel: "FEISHU", originatingTo: "ou_abc123", + run: { + ...queued.run, + agentAccountId: undefined, + }, } as FollowupRun, });