summaryrefslogtreecommitdiff
path: root/packages/cli/src/services/CommandService.test.ts
diff options
context:
space:
mode:
authorHarold Mciver <[email protected]>2025-07-16 21:46:35 -0400
committerGitHub <[email protected]>2025-07-17 01:46:35 +0000
commit01e66bb12392c3e8cd0222dc495c8dc61ebe4fba (patch)
tree68c73d9e67ecb782b8903b34dab18c1173438aee /packages/cli/src/services/CommandService.test.ts
parent0c76affe6dee2577aa072ee690f38906eecdf2d1 (diff)
update `/bug` to new slash command arch (#4246)
Co-authored-by: Abhi <[email protected]> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Abhi <[email protected]>
Diffstat (limited to 'packages/cli/src/services/CommandService.test.ts')
-rw-r--r--packages/cli/src/services/CommandService.test.ts8
1 files changed, 7 insertions, 1 deletions
diff --git a/packages/cli/src/services/CommandService.test.ts b/packages/cli/src/services/CommandService.test.ts
index b94e265b..8f5b1421 100644
--- a/packages/cli/src/services/CommandService.test.ts
+++ b/packages/cli/src/services/CommandService.test.ts
@@ -24,6 +24,7 @@ import { toolsCommand } from '../ui/commands/toolsCommand.js';
import { compressCommand } from '../ui/commands/compressCommand.js';
import { mcpCommand } from '../ui/commands/mcpCommand.js';
import { editorCommand } from '../ui/commands/editorCommand.js';
+import { bugCommand } from '../ui/commands/bugCommand.js';
// Mock the command modules to isolate the service from the command implementations.
vi.mock('../ui/commands/memoryCommand.js', () => ({
@@ -71,9 +72,12 @@ vi.mock('../ui/commands/mcpCommand.js', () => ({
vi.mock('../ui/commands/editorCommand.js', () => ({
editorCommand: { name: 'editor', description: 'Mock Editor' },
}));
+vi.mock('../ui/commands/bugCommand.js', () => ({
+ bugCommand: { name: 'bug', description: 'Mock Bug' },
+}));
describe('CommandService', () => {
- const subCommandLen = 15;
+ const subCommandLen = 16;
let mockConfig: Mocked<Config>;
beforeEach(() => {
@@ -110,6 +114,7 @@ describe('CommandService', () => {
const commandNames = tree.map((cmd) => cmd.name);
expect(commandNames).toContain('auth');
+ expect(commandNames).toContain('bug');
expect(commandNames).toContain('memory');
expect(commandNames).toContain('help');
expect(commandNames).toContain('clear');
@@ -167,6 +172,7 @@ describe('CommandService', () => {
expect(loadedTree).toEqual([
aboutCommand,
authCommand,
+ bugCommand,
chatCommand,
clearCommand,
compressCommand,