style: fix biome linting in ack-reaction tests
This commit is contained in:
committed by
Peter Steinberger
parent
2daead27cf
commit
30b4c14296
@@ -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", () => {
|
||||
|
||||
Reference in New Issue
Block a user