Files
discordeno/tests/members/getDmChannel.ts
2021-12-02 16:24:41 +00:00

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");
});