Files
discordeno/tests/misc/startTyping.test.ts
2022-05-31 14:22:12 +00:00

9 lines
316 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);
});