mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-23 02:07:52 +00:00
Adding some simple tests. (#54)
This commit is contained in:
9
packages/cli/src/index.test.ts
Normal file
9
packages/cli/src/index.test.ts
Normal file
@@ -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');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user