From fec1566f0425c82e15f2ebcc62655a6b97cd625d Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 16 Feb 2026 09:30:33 +0000 Subject: [PATCH] test: remove duplicate ack-reaction none-scope branch case --- src/channels/ack-reactions.test.ts | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/src/channels/ack-reactions.test.ts b/src/channels/ack-reactions.test.ts index cdc10c88265..8303d265f33 100644 --- a/src/channels/ack-reactions.test.ts +++ b/src/channels/ack-reactions.test.ts @@ -36,7 +36,7 @@ describe("shouldAckReaction", () => { ).toBe(true); }); - it("skips when scope is off or none", () => { + it("skips when scope is off", () => { expect( shouldAckReaction({ scope: "off", @@ -48,18 +48,6 @@ describe("shouldAckReaction", () => { effectiveWasMentioned: true, }), ).toBe(false); - - expect( - shouldAckReaction({ - scope: "none", - isDirect: true, - isGroup: true, - isMentionableGroup: true, - requireMention: true, - canDetectMention: true, - effectiveWasMentioned: true, - }), - ).toBe(false); }); it("defaults to group-mentions gating", () => {