diff options
| author | Evan Senter <[email protected]> | 2025-04-19 18:07:24 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-04-19 18:07:24 +0100 |
| commit | 0c9e1ef61be7db53e6e73b7208b649cd8cbed6c3 (patch) | |
| tree | c2c6bfad0564f461971a61e958658a96d291caee /packages/cli/src/index.test.ts | |
| parent | d9ad2a74ae8c2bf4cac68d16d765314aab28b45d (diff) | |
Adding some simple tests. (#54)
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'); + }); +}); |
