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