summaryrefslogtreecommitdiff
path: root/packages/cli/src/index.test.ts
diff options
context:
space:
mode:
authorJaana Dogan <[email protected]>2025-04-21 12:59:31 -0700
committerGitHub <[email protected]>2025-04-21 12:59:31 -0700
commitbaf39042c8631d53dfac4e57148404749cde14b3 (patch)
tree49fcfe890714b80d0f8bc5cace6869128ea25687 /packages/cli/src/index.test.ts
parent2571e071751681338518c2bf65f25ad32b2f71f4 (diff)
Remove duplicate CLI tools module, remove the global tool registry (#89)
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');
- });
-});