mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-04 13:51:30 +00:00
test: accept Windows exec approval denial path
This commit is contained in:
@@ -1415,7 +1415,11 @@ describe("handleSystemRunInvoke mac app exec host routing", () => {
|
||||
|
||||
expect(malicious.runCommand).not.toHaveBeenCalled();
|
||||
expectInvokeErrorMessage(malicious.sendInvokeResult, {
|
||||
message: "awk inline program requires explicit approval in strictInlineEval mode",
|
||||
message:
|
||||
process.platform === "win32"
|
||||
? "SYSTEM_RUN_DENIED: approval required"
|
||||
: "awk inline program requires explicit approval in strictInlineEval mode",
|
||||
exact: process.platform === "win32",
|
||||
});
|
||||
} finally {
|
||||
fs.rmSync(tempDir, { recursive: true, force: true });
|
||||
|
||||
Reference in New Issue
Block a user