Files
discordeno/tests/members/getDmChannel.ts
ITOH 81f8e0377c style: move to deno fmt (#1992)
* Create deno.json

* run format

* run format

* ci: only check formatting

* f

* Update settings.json

* Update settings.json
2022-02-04 15:00:04 +01:00

8 lines
289 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, { content: "https://i.imgur.com/doG55NR.png" });
});