diff --git a/integration-tests/run_shell_command.test.ts b/integration-tests/run_shell_command.test.ts index 5bc1880b9a..4f4984c604 100644 --- a/integration-tests/run_shell_command.test.ts +++ b/integration-tests/run_shell_command.test.ts @@ -197,13 +197,14 @@ describe('run_shell_command', () => { ).toBeTruthy(); }); - //TODO - https://github.com/google-gemini/gemini-cli/issues/10737 - it.skip('should combine multiple --allowed-tools flags', async () => { + it('should combine multiple --allowed-tools flags', async () => { const rig = new TestRig(); await rig.setup('should combine multiple --allowed-tools flags'); const { tool } = getLineCountCommand(); - const prompt = `use ${tool} and ls`; + const prompt = + `use both ${tool} and ls to count the number of lines in ` + + `files in this directory`; const result = await rig.run({ stdin: prompt,