qwen-code/packages/cli/src/index.test.ts
2025-04-19 18:07:24 +01:00

9 lines
292 B
TypeScript

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