diff --git a/src/auto-reply/reply/reply-utils.test.ts b/src/auto-reply/reply/reply-utils.test.ts index 2abcdf1096..8a7e173fd6 100644 --- a/src/auto-reply/reply/reply-utils.test.ts +++ b/src/auto-reply/reply/reply-utils.test.ts @@ -591,16 +591,6 @@ describe("createReplyReferencePlanner", () => { expect(planner.use()).toBe("parent"); }); - it("respects replyToMode off even with existingId", () => { - const planner = createReplyReferencePlanner({ - replyToMode: "off", - existingId: "thread-1", - startId: "parent", - }); - expect(planner.use()).toBeUndefined(); - expect(planner.hasReplied()).toBe(false); - }); - it("uses existingId once when mode is first", () => { const planner = createReplyReferencePlanner({ replyToMode: "first",