blob: bbe9fa8b7372818f42f4bfe19ac5394d44cad8b9 (
plain)
1
2
3
4
5
6
7
8
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');
});
});
|