Files
discordeno/tests/misc/typing.ts
2021-11-24 03:05:33 +00:00

6 lines
219 B
TypeScript

import { bot, guild } from '../mod.ts';
Deno.test("[typing] start typing", async () => {
const channel = await bot.helpers.createChannel(guild.id, { name: "typing"})
await bot.helpers.startTyping(channel.id)
})