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

This commit is contained in:
Peter Steinberger
2026-02-16 09:58:05 +00:00
parent 7cfd0aed5f
commit 4da68afc73

View File

@@ -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",