Files
discordeno/tests/stickers/getSticker.test.ts
T
LTS20050703 17132aaf61 feat(helpers): add stickers helpers (#2466)
* helpers: add stickers helpers

* deno fmt

* undo move getNitroStickerPack to stickers

* helpers/stickers: fix jsdocs

* plugins/permissions: check stickers permissions

* plugins/validations: validate stickers stuff

* tests: stickers unit tests

* helpers/stickers: add support for reason

* plugins/permissions: MANAGE_EMOJIS -> MANAGE_EMOJIS_AND_STICKERS

* tests/stickers: delete sticker after test
createGuildSticker: add send sticker test
getGuildStickers: create another sticker then test > 1 stickers
2022-09-22 11:31:41 -04: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");
});