mirror of https://github.com/openclaw/openclaw.git
test: accept Windows exec approval denial path
This commit is contained in:
parent
247a06813e
commit
a406045f2f
|
|
@ -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 });
|
||||
|
|
|
|||
Loading…
Reference in New Issue