diff --git a/src/cron/isolated-agent.skips-delivery-without-whatsapp-recipient-besteffortdeliver-true.test.ts b/src/cron/isolated-agent.skips-delivery-without-whatsapp-recipient-besteffortdeliver-true.test.ts index 9f55c0eab43..de087f5eeae 100644 --- a/src/cron/isolated-agent.skips-delivery-without-whatsapp-recipient-besteffortdeliver-true.test.ts +++ b/src/cron/isolated-agent.skips-delivery-without-whatsapp-recipient-besteffortdeliver-true.test.ts @@ -232,23 +232,6 @@ describe("runCronIsolatedAgentTurn", () => { setupIsolatedAgentTurnMocks({ fast: true }); }); - it("does not mark NO_REPLY output as delivered when no direct send occurs", async () => { - await withTelegramAnnounceFixture(async ({ home, storePath, deps }) => { - mockAgentPayloads([{ text: "NO_REPLY" }]); - const res = await runTelegramAnnounceTurn({ - home, - storePath, - deps, - delivery: { mode: "announce", channel: "telegram", to: "123" }, - }); - - expect(res.status).toBe("ok"); - expect(res.delivered).toBe(false); - expect(runSubagentAnnounceFlow).not.toHaveBeenCalled(); - expect(deps.sendMessageTelegram).not.toHaveBeenCalled(); - }); - }); - it("deletes the isolated cron session after NO_REPLY when deleteAfterRun is enabled", async () => { await withTelegramAnnounceFixture(async ({ home, storePath, deps }) => { mockAgentPayloads([{ text: "NO_REPLY" }]);