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