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