Files
discordeno/tests/helpers/guilds/getVanityUrl.ts
2022-02-11 09:49:53 +00:00

14 lines
445 B
TypeScript

import { Bot } from "../../../bot.ts";
import { assertEquals, assertExists } from "../../deps.ts";
export async function getVanityURLTests(guildId: bigint) {
// TODO: VANITY IS BROKEN ATM FROM DISCORDS SIDE
return;
// const fetchedVanityURL = await bot.helpers.getVanityURL(guildId);
// console.log("fetched", fetchedVanityURL);
// // Assertions
// assertExists(fetchedVanityURL);
// assertEquals(fetchedVanityURL.code, null);
}