diff options
Diffstat (limited to 'packages/core/src/utils/shell-utils.test.ts')
| -rw-r--r-- | packages/core/src/utils/shell-utils.test.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/core/src/utils/shell-utils.test.ts b/packages/core/src/utils/shell-utils.test.ts index 9473dee7..22d316ad 100644 --- a/packages/core/src/utils/shell-utils.test.ts +++ b/packages/core/src/utils/shell-utils.test.ts @@ -38,7 +38,9 @@ describe('isCommandAllowed', () => { config.getCoreTools = () => ['ShellTool(ls -l)']; const result = isCommandAllowed('rm -rf /', config); expect(result.allowed).toBe(false); - expect(result.reason).toBe(`Command(s) not in the allowed commands list.`); + expect(result.reason).toBe( + `Command(s) not in the allowed commands list. Disallowed commands: "rm -rf /"`, + ); }); it('should block a command if it is in the blocked list', () => { @@ -157,7 +159,7 @@ describe('checkCommandPermissions', () => { expect(result).toEqual({ allAllowed: false, disallowedCommands: ['git status'], - blockReason: `Command(s) not in the allowed commands list.`, + blockReason: `Command(s) not in the allowed commands list. Disallowed commands: "git status"`, isHardDenial: false, }); }); |
