10 lines
266 B
TypeScript
10 lines
266 B
TypeScript
|
|
import { describe, expect, it } from "vitest";
|
||
|
|
import { ToolRegistry } from "../src/registry";
|
||
|
|
|
||
|
|
describe("tools package smoke", () => {
|
||
|
|
it("exports tool registry", () => {
|
||
|
|
const registry = new ToolRegistry();
|
||
|
|
expect(registry.list()).toEqual([]);
|
||
|
|
});
|
||
|
|
});
|