fix(cli): improve ui arg passthrough

This commit is contained in:
Peter Steinberger
2025-12-13 17:09:13 +00:00
parent 2b29d08064
commit 3b283f3167
3 changed files with 11 additions and 13 deletions

View File

@@ -98,13 +98,7 @@ describe("gateway SIGTERM", () => {
child.stdout?.on("data", (d) => out.push(String(d)));
child.stderr?.on("data", (d) => err.push(String(d)));
await waitForPortOpen(
proc,
out,
err,
port,
20_000,
);
await waitForPortOpen(proc, out, err, port, 20_000);
proc.kill("SIGTERM");