Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
9 lines
279 B
TypeScript
9 lines
279 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import * as template from "../src/index.js";
|
|
|
|
describe("template package smoke test", () => {
|
|
it("exposes the MCP core factory from public entrypoint", () => {
|
|
expect(typeof template.createMcpCore).toBe("function");
|
|
});
|
|
});
|