Files
discordeno/tests/misc/typing.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

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);
});