mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-30 23:40:07 +00:00
* Create deno.json * run format * run format * ci: only check formatting * f * Update settings.json * Update settings.json
7 lines
220 B
TypeScript
7 lines
220 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);
|
|
});
|