Skip to main content
Extremely Popular
Go to Latest
File
import { assertExists } from "../../deps.ts";import { bot } from "../../mod.ts";import { delayUntil } from "../../utils.ts";
async function ifItFailsBlameWolf(channelId: bigint, reason?: string) { const message = await bot.helpers.sendMessage(channelId, { content: "Hello World!" }); const secondMessage = await bot.helpers.sendMessage(channelId, { content: "Hello World 2!" });
// Assertions assertExists(message); assertExists(secondMessage); // Delay the execution by to allow MESSAGE_CREATE event to be processed await delayUntil(10000, () => bot.messages.has(message.id) && bot.messages.has(secondMessage.id)); // Make sure the message was created. if (!bot.messages.has(message.id) || !bot.messages.has(secondMessage.id)) { throw new Error(`The message seemed to be sent but it was not cached. Reason: ${reason}`); }
// Delete the messages now await bot.helpers.deleteMessages(channelId, [message.id, secondMessage.id], reason);
// Wait to give it time for MESSAGE_DELETE event await delayUntil(10000, () => !bot.messages.has(message.id) && !bot.messages.has(secondMessage.id)); // Make sure they are gone from cache if (bot.messages.has(message.id) || bot.messages.has(secondMessage.id)) { throw new Error("The messages should have been deleted but they are still in cache."); }}
export async function deleteMessagesWithoutReasonTest(channelId: bigint) { await ifItFailsBlameWolf(channelId);}
export async function deleteMessagesWithReasonTest(channelId: bigint) { await ifItFailsBlameWolf(channelId, "with a reason");}