mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-15 10:58:16 +00:00
19 lines
510 B
TypeScript
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) {
|
|
|
|
}
|