mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-01 16:30:08 +00:00
9 lines
274 B
TypeScript
9 lines
274 B
TypeScript
import { assertEquals } from "../deps.ts";
|
|
import { loadBot } from "../mod.ts";
|
|
|
|
Deno.test("[application] Get application info", async () => {
|
|
const bot = loadBot();
|
|
const application = await bot.helpers.getApplicationInfo();
|
|
assertEquals(application.id, bot.id);
|
|
});
|