Files
discordeno/tests/webhooks/deleteWebhook.ts
2021-11-22 18:31:14 +00:00

9 lines
251 B
TypeScript

import { bot, channel } from "../mod.ts";
Deno.test("[webhooks] Delete a webhook", async () => {
const webhook = await bot.helpers.createWebhook(channel.id, {
name: "natico",
});
await bot.helpers.deleteWebhook(channel.id, webhook.id);
});