Files
discordeno/tests/stickers/getSticker.test.ts
2022-10-03 19:32:27 +00:00

9 lines
267 B
TypeScript

import { assertEquals } from "../deps.ts";
import { loadBot } from "../mod.ts";
Deno.test("[stickers] Get sticker", async () => {
const bot = loadBot();
const sticker = await bot.helpers.getSticker(749054660769218631n);
assertEquals(sticker.name, "Wave");
});