mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 09:20:08 +00:00
10 lines
247 B
TypeScript
10 lines
247 B
TypeScript
import { assertExists } from "../../deps.ts";
|
|
import { bot } from "../../mod.ts";
|
|
|
|
export async function getAvailableVoiceRegionsTests() {
|
|
const regions = await bot.helpers.getAvailableVoiceRegions();
|
|
|
|
// Assertions
|
|
assertExists(regions);
|
|
}
|