16 lines
381 B
TypeScript
16 lines
381 B
TypeScript
/**
|
|
* @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');
|
|
});
|
|
});
|