From f4c4e940a63df4f185c12bef80a45debb54dfcc6 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 22 Apr 2026 23:36:29 +0100 Subject: [PATCH] test(qa): stabilize lab catalog abort fixture --- extensions/qa-lab/src/lab-server.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/qa-lab/src/lab-server.test.ts b/extensions/qa-lab/src/lab-server.test.ts index 22989f22019..3c732335541 100644 --- a/extensions/qa-lab/src/lab-server.test.ts +++ b/extensions/qa-lab/src/lab-server.test.ts @@ -555,11 +555,11 @@ describe("qa-lab server", () => { path.join(repoRoot, "dist/index.js"), [ 'const fs = require("node:fs");', - `fs.writeFileSync(${JSON.stringify(markerPath)}, process.env.OPENCLAW_CODEX_DISCOVERY_LIVE || "", "utf8");`, "process.on('SIGTERM', () => {", ` fs.writeFileSync(${JSON.stringify(stoppedPath)}, "terminated", "utf8");`, " process.exit(0);", "});", + `fs.writeFileSync(${JSON.stringify(markerPath)}, process.env.OPENCLAW_CODEX_DISCOVERY_LIVE || "", "utf8");`, "setInterval(() => {}, 1000);", ].join("\n"), "utf8",