ts-mcp-template/tests/smoke.test.ts
Jax 8df0a58dfa feat: migrate verified template implementation into main repo
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
2026-03-11 22:10:25 +08:00

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");
});
});