mirror of
https://github.com/discordeno/discordeno.git
synced 2026-09-17 08:47:22 +00:00
fix: unit tests guild id bigint
This commit is contained in:
+3
-1
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user