test: remove duplicate existing-id all-mode planner case

This commit is contained in:
Peter Steinberger
2026-02-16 10:01:58 +00:00
parent f043f2d8c9
commit 597f956a4f

View File

@@ -600,16 +600,6 @@ describe("createReplyReferencePlanner", () => {
expect(planner.use()).toBeUndefined();
});
it("uses existingId on every call when mode is all", () => {
const planner = createReplyReferencePlanner({
replyToMode: "all",
existingId: "thread-1",
startId: "parent",
});
expect(planner.use()).toBe("thread-1");
expect(planner.use()).toBe("thread-1");
});
it("honors allowReference=false", () => {
const planner = createReplyReferencePlanner({
replyToMode: "all",