chore(tsgo/format): fix CI errors

This commit is contained in:
Gustavo Madeira Santana
2026-02-21 17:51:56 -05:00
parent 6ac89757ba
commit 0e1aa77928
15 changed files with 133 additions and 59 deletions

View File

@@ -705,7 +705,7 @@ describe("discord reaction notification gating", () => {
botId: "bot-1",
messageAuthorId: "user-1",
userId: "user-2",
allowlist: [],
allowlist: [] as string[],
},
expected: false,
},
@@ -717,7 +717,7 @@ describe("discord reaction notification gating", () => {
messageAuthorId: "user-1",
userId: "123",
userName: "steipete",
allowlist: ["123", "other"],
allowlist: ["123", "other"] as string[],
},
expected: true,
},
@@ -984,7 +984,7 @@ describe("discord reaction notification modes", () => {
{
name: "allowlist mode",
reactionNotifications: "allowlist" as const,
users: ["123"],
users: ["123"] as string[],
userId: "123",
channelType: ChannelType.GuildText,
channelId: undefined,