Files
2026-07-13 13:39:47 +08:00

7 lines
172 B
TypeScript

import { expect, test } from "vitest";
import { MediaGoClient } from "../src";
test("exports MediaGoClient", () => {
expect(MediaGoClient).toBeInstanceOf(Function);
});