fix: unit tests guild id bigint

This commit is contained in:
Skillz4Killz
2022-05-08 17:46:53 +00:00
committed by GitHub
parent 6d7b82110e
commit d69b1b561a
+3 -1
View File
@@ -1,4 +1,6 @@
export const CACHED_COMMUNITY_GUILD_ID = Deno.env.get("UNIT_TEST_GUILD_ID") ?? 907350958810480671n;
const UNIT_TEST_GUILD_ID = Deno.env.get("UNIT_TEST_GUILD_ID");
export const CACHED_COMMUNITY_GUILD_ID = UNIT_TEST_GUILD_ID ? BigInt(UNIT_TEST_GUILD_ID) : 907350958810480671n;
export function delayUntil(
maxMs: number,