Files
discordeno/tests/helpers/guilds/getAuditLogs.ts
Skillz4Killz 0679e575c4 fix tests
2021-11-07 00:01:16 +00:00

10 lines
277 B
TypeScript

import { Bot } from "../../../src/bot.ts";
import { assertExists } from "../../deps.ts";
export async function getAuditLogsTests(bot: Bot, guildId: bigint, t: Deno.TestContext) {
const logs = await bot.helpers.getAuditLogs(guildId);
// Assertions
assertExists(logs);
}