src/voice/nativeDiscordVideoDecoder.test.ts

import { test } from "bun:test"; import assert from "node:assert/strict";

import { hasNativeDiscordVideoDecoderSupport } from "./nativeDiscordVideoDecoder.ts";

test("hasNativeDiscordVideoDecoderSupport returns a boolean", () => { const result = hasNativeDiscordVideoDecoderSupport(); assert.equal(typeof result, "boolean"); });