summaryrefslogtreecommitdiff
path: root/packages/cli/src/index.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/cli/src/index.test.ts')
-rw-r--r--packages/cli/src/index.test.ts15
1 files changed, 0 insertions, 15 deletions
diff --git a/packages/cli/src/index.test.ts b/packages/cli/src/index.test.ts
deleted file mode 100644
index 9d65e38f..00000000
--- a/packages/cli/src/index.test.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-/**
- * @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');
- });
-});