Skip to main content
Module

x/discordeno/tests/members/getMember.ts

Discord API library for Deno
Go to Latest
File
import { bot, guild } from "../mod.ts";import { assertEquals } from "../deps.ts";
Deno.test("[member] fetches the bot and compares the bot's id with the fetched member's id", async () => { const member = await bot.helpers.getMember(guild.id, bot.id); assertEquals(member.id, bot.id);});