From 30b4c142967c50342cf3b3daa83e794845f36d8e Mon Sep 17 00:00:00 2001 From: sheeek Date: Sat, 10 Jan 2026 00:59:36 +0100 Subject: [PATCH] style: fix biome linting in ack-reaction tests --- src/web/auto-reply.ack-reaction.test.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/web/auto-reply.ack-reaction.test.ts b/src/web/auto-reply.ack-reaction.test.ts index f34bd6735..2d4094485 100644 --- a/src/web/auto-reply.ack-reaction.test.ts +++ b/src/web/auto-reply.ack-reaction.test.ts @@ -191,9 +191,9 @@ describe("WhatsApp ack reaction logic", () => { }, }; - expect( - shouldSendReaction(cfg, { id: "m1", chatType: "direct" }), - ).toBe(false); + expect(shouldSendReaction(cfg, { id: "m1", chatType: "direct" })).toBe( + false, + ); expect( shouldSendReaction(cfg, { @@ -211,9 +211,9 @@ describe("WhatsApp ack reaction logic", () => { }, }; - expect( - shouldSendReaction(cfg, { id: "m1", chatType: "direct" }), - ).toBe(true); + expect(shouldSendReaction(cfg, { id: "m1", chatType: "direct" })).toBe( + true, + ); expect( shouldSendReaction(cfg, { @@ -230,9 +230,9 @@ describe("WhatsApp ack reaction logic", () => { const cfg: ClawdbotConfig = { whatsapp: { ackReaction: { emoji: "👀" } }, }; - expect( - shouldSendReaction(cfg, { id: "m1", chatType: "direct" }), - ).toBe(true); + expect(shouldSendReaction(cfg, { id: "m1", chatType: "direct" })).toBe( + true, + ); }); it("should default group=mentions", () => {