mediago-dev--mediago
38cb884b77
Also fix pre-existing lint errors exposed by staging: - Merge duplicate 'eventsource' imports in eventEmitter.ts - Remove unused catch parameter in eventEmitter.ts - Merge duplicate 'react' imports in app-side-bar.tsx Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
7 行
172 B
TypeScript
7 行
172 B
TypeScript
import { expect, test } from "vitest";
|
|
import { MediaGoClient } from "../src";
|
|
|
|
test("exports MediaGoClient", () => {
|
|
expect(MediaGoClient).toBeInstanceOf(Function);
|
|
});
|