mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-24 03:54:43 -07:00
enable cli_help agent by default (#16100)
This commit is contained in:
committed by
GitHub
parent
51d3f44d51
commit
1aa35c8796
@@ -209,6 +209,7 @@ describe('AgentRegistry', () => {
|
||||
const disabledConfig = makeFakeConfig({
|
||||
enableAgents: false,
|
||||
codebaseInvestigatorSettings: { enabled: false },
|
||||
cliHelpAgentSettings: { enabled: false },
|
||||
});
|
||||
const disabledRegistry = new TestableAgentRegistry(disabledConfig);
|
||||
|
||||
@@ -220,10 +221,8 @@ describe('AgentRegistry', () => {
|
||||
).not.toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it('should register CLI help agent if enabled', async () => {
|
||||
const config = makeFakeConfig({
|
||||
cliHelpAgentSettings: { enabled: true },
|
||||
});
|
||||
it('should register CLI help agent by default', async () => {
|
||||
const config = makeFakeConfig();
|
||||
const registry = new TestableAgentRegistry(config);
|
||||
|
||||
await registry.initialize();
|
||||
|
||||
Reference in New Issue
Block a user