fix: get sticker test

This commit is contained in:
Skillz4Killz
2022-10-03 19:32:27 +00:00
committed by GitHub
parent a3f79c4b5d
commit 3404c7880a

View File

@@ -1,8 +1,8 @@
// import { assertEquals } from "../deps.ts";
// import { loadBot } from "../mod.ts";
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");
// });
Deno.test("[stickers] Get sticker", async () => {
const bot = loadBot();
const sticker = await bot.helpers.getSticker(749054660769218631n);
assertEquals(sticker.name, "Wave");
});