fix(tests): fix broken threads assertion

This commit is contained in:
Skillz4Killz
2022-05-29 14:55:33 +00:00
committed by GitHub
parent 5e492f0d49
commit 24e4ca8e2e

View File

@@ -23,7 +23,6 @@ Deno.test("[thread] Get active threads", async (t) => {
const activeThreads = await bot.helpers.getActiveThreads(CACHED_COMMUNITY_GUILD_ID);
assertEquals(Boolean(activeThreads.threads.size), true);
assertEquals(Boolean(activeThreads.members.size), true);
await bot.helpers.deleteChannel(channel.id);
});