Files
discordeno/tests/helpers/members/ban.ts
T
2021-11-22 16:34:30 +00:00

19 lines
510 B
TypeScript

import { Bot } from "../../../src/bot.ts";
import { CreateGuildBan } from "../../../src/types/mod.ts";
import { assertEquals } from "../../deps.ts";
import { delayUntil } from "../../utils.ts";
export async function banTest(bot: Bot, t: Deno.TestContext, guildId: bigint, id: bigint, options?: CreateGuildBan) {
}
export async function getBansTest(bot: Bot, t: Deno.TestContext, guildId: bigint) {
}
export async function unbanTest(bot: Bot, t: Deno.TestContext, guildId: bigint, id: bigint) {
}