mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-02 08:50:07 +00:00
10 lines
363 B
TypeScript
10 lines
363 B
TypeScript
import { loadBot } from "../mod.ts";
|
|
import { CACHED_COMMUNITY_GUILD_ID } from "../utils.ts";
|
|
|
|
Deno.test("[typing] start typing", async () => {
|
|
const bot = loadBot();
|
|
const channel = await bot.helpers.createChannel(CACHED_COMMUNITY_GUILD_ID, { name: "typing" });
|
|
await bot.helpers.startTyping(channel.id);
|
|
await bot.helpers.deleteChannel(channel.id);
|
|
});
|