From 125c2002e16d64f54de6b571b4c5cfe49b7dd393 Mon Sep 17 00:00:00 2001 From: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com> Date: Wed, 3 Nov 2021 22:35:29 +0000 Subject: [PATCH] enable category test --- tests/mod.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/mod.ts b/tests/mod.ts index 513c98fd7..5bb8f04e9 100644 --- a/tests/mod.ts +++ b/tests/mod.ts @@ -56,6 +56,7 @@ import { getBansTests } from "./helpers/guilds/getBans.ts"; import { getGuildTests } from "./helpers/guilds/getGuild.ts"; import { getVanityURLTests } from "./helpers/guilds/getVanityUrl.ts"; import { getDiscoveryCategoriesTest, validDiscoveryTermTest } from "./helpers/misc/discoveries.ts"; +import { categoryChildrenTest } from "./helpers/channels/categoryChannels.ts"; // CHANGE TO TRUE WHEN DEBUGGING SANITIZATION ERRORS const sanitizeMode = { @@ -541,6 +542,12 @@ Deno.test({ }, ...sanitizeMode, }), + t.step({ + name: "[channel] filter all category channels", + async fn() { + await categoryChildrenTest(bot, guild.id, t); + }, + }), ]); // ALL TEST RELATED TO INVITES