blob: 9d65e38f1bb14d603ef07134dfcad78cfc91db44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
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');
});
});
|