7 lines
172 B
TypeScript
7 lines
172 B
TypeScript
import { expect, test } from "vitest";
|
|
import { MediaGoClient } from "../src";
|
|
|
|
test("exports MediaGoClient", () => {
|
|
expect(MediaGoClient).toBeInstanceOf(Function);
|
|
});
|