mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-10 00:11:19 +00:00
test(memory): clean up qmd fixture gracefully
This commit is contained in:
parent
73dd758310
commit
c9ddf2eca6
1 changed files with 3 additions and 1 deletions
|
|
@ -71,7 +71,9 @@ function killProcessTree(parentPid: number): void {
|
|||
);
|
||||
return;
|
||||
}
|
||||
process.kill(-parentPid, "SIGKILL");
|
||||
// The production abort path already force-kills the group. Cleanup after a
|
||||
// failed assertion starts gracefully so it cannot kill a reused group id.
|
||||
process.kill(-parentPid, "SIGTERM");
|
||||
}
|
||||
|
||||
describe("runCliCommand real process lifecycle", () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue