mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-02 17:00:08 +00:00
8 lines
244 B
TypeScript
8 lines
244 B
TypeScript
import { assertEquals } from "../deps.ts";
|
|
import { bot, guild } from "../mod.ts";
|
|
|
|
Deno.test("[voice] Get voice regions", async () => {
|
|
const regions = await bot.helpers.getVoiceRegions(guild.id);
|
|
assertEquals(regions.size > 1, true);
|
|
});
|