summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/hooks/shellCommandProcessor.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/cli/src/ui/hooks/shellCommandProcessor.test.ts')
-rw-r--r--packages/cli/src/ui/hooks/shellCommandProcessor.test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/cli/src/ui/hooks/shellCommandProcessor.test.ts b/packages/cli/src/ui/hooks/shellCommandProcessor.test.ts
index 6d7ea5d6..3645cc80 100644
--- a/packages/cli/src/ui/hooks/shellCommandProcessor.test.ts
+++ b/packages/cli/src/ui/hooks/shellCommandProcessor.test.ts
@@ -155,7 +155,7 @@ describe('useShellCommandProcessor', () => {
expect.stringContaining('Executing shell command in /current/dir:'),
);
expect(mockExecuteCommand).toHaveBeenCalledWith(
- '{ !ls -l; }; pwd >/tmp/shell_pwd_randomBytes.tmp',
+ '{ !ls -l; }; __code=$?; pwd >/tmp/shell_pwd_randomBytes.tmp; exit $__code',
{ cwd: '/current/dir' },
expect.any(Function),
);
@@ -272,7 +272,7 @@ describe('useShellCommandProcessor', () => {
expect.any(Number),
);
expect(mockExecuteCommand).toHaveBeenCalledWith(
- '{ !sleep 5 & }; pwd >/tmp/shell_pwd_randomBytes.tmp',
+ '{ !sleep 5 & }; __code=$?; pwd >/tmp/shell_pwd_randomBytes.tmp; exit $__code',
{ cwd: '/current/dir' },
expect.any(Function),
);