mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 09:30:43 +00:00
test(e2e): tolerate missing pgrep in runtime smoke
This commit is contained in:
@@ -502,6 +502,10 @@ async function assertNoPackageManagerChildren(pid) {
|
||||
);
|
||||
}
|
||||
} catch (error) {
|
||||
if (error?.code === "ENOENT") {
|
||||
console.log("Runtime deps child-process watchdog skipped: pgrep unavailable");
|
||||
return;
|
||||
}
|
||||
if (error instanceof Error && error.message.includes("failed with 1")) {
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user