mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-04 09:50:07 +00:00
8 lines
276 B
TypeScript
8 lines
276 B
TypeScript
import { bot } from "../mod.ts";
|
|
|
|
Deno.test("[member] get dm channel and send a message", async () => {
|
|
// Itoh Alt ID
|
|
const channel = await bot.helpers.getDmChannel(750661528360845322n);
|
|
await bot.helpers.sendMessage(channel.id, "https://i.imgur.com/doG55NR.png");
|
|
});
|