mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-02 00:40:07 +00:00
14 lines
445 B
TypeScript
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);
|
|
}
|