mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 17:30:07 +00:00
10 lines
277 B
TypeScript
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);
|
|
}
|