Files
discordeno/tests/helpers/guilds/getAuditLogs.ts
2021-12-02 16:24:41 +00:00

10 lines
239 B
TypeScript

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