summaryrefslogtreecommitdiff
path: root/packages/cli/src/services
diff options
context:
space:
mode:
Diffstat (limited to 'packages/cli/src/services')
-rw-r--r--packages/cli/src/services/CommandService.test.ts1
-rw-r--r--packages/cli/src/services/CommandService.ts2
2 files changed, 0 insertions, 3 deletions
diff --git a/packages/cli/src/services/CommandService.test.ts b/packages/cli/src/services/CommandService.test.ts
index 5945e3f6..d03bf988 100644
--- a/packages/cli/src/services/CommandService.test.ts
+++ b/packages/cli/src/services/CommandService.test.ts
@@ -96,7 +96,6 @@ describe('CommandService', () => {
mockConfig = {
getIdeMode: vi.fn(),
getCheckpointingEnabled: vi.fn(),
- getBackgroundAgentManager: vi.fn(),
} as unknown as Mocked<Config>;
vi.mocked(ideCommand).mockReturnValue(null);
vi.mocked(restoreCommand).mockReturnValue(null);
diff --git a/packages/cli/src/services/CommandService.ts b/packages/cli/src/services/CommandService.ts
index 9db4e9e6..def8cfcc 100644
--- a/packages/cli/src/services/CommandService.ts
+++ b/packages/cli/src/services/CommandService.ts
@@ -7,7 +7,6 @@
import { Config } from '@google/gemini-cli-core';
import { SlashCommand } from '../ui/commands/types.js';
import { memoryCommand } from '../ui/commands/memoryCommand.js';
-import { backgroundCommand } from '../ui/commands/backgroundCommand.js';
import { helpCommand } from '../ui/commands/helpCommand.js';
import { clearCommand } from '../ui/commands/clearCommand.js';
import { corgiCommand } from '../ui/commands/corgiCommand.js';
@@ -34,7 +33,6 @@ const loadBuiltInCommands = async (
const allCommands = [
aboutCommand,
authCommand,
- backgroundCommand(config),
bugCommand,
chatCommand,
clearCommand,