diff options
Diffstat (limited to 'packages/cli/src/index.test.ts')
| -rw-r--r-- | packages/cli/src/index.test.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/packages/cli/src/index.test.ts b/packages/cli/src/index.test.ts new file mode 100644 index 00000000..bbe9fa8b --- /dev/null +++ b/packages/cli/src/index.test.ts @@ -0,0 +1,9 @@ +import { describe, it, expect } from 'vitest'; +import { toolRegistry } from './tools/tool-registry.js'; + +describe('cli tests', () => { + it('should have a tool registry', () => { + expect(toolRegistry).toBeDefined(); + expect(typeof toolRegistry.registerTool).toBe('function'); + }); +}); |
