Skip to content

Commit 8490cfa

Browse files
xuiocodex
andcommitted
Stabilize app-server cancellation test
Allow slower CI runners enough time to observe the fake app-server SIGTERM record while keeping the cancellation assertion intact. Co-Authored-By: OpenAI Codex <noreply@openai.com>
1 parent cae397d commit 8490cfa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/app-server-hardening.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ describe("app-server hardening", () => {
252252
const sawSigterm = await waitFor(async () => {
253253
const calls = await recordedCalls(recordDir);
254254
return calls.some((call) => call.method === "process/sigterm");
255-
});
255+
}, 10_000);
256256
expect(sawSigterm).toBe(true);
257257
});
258258

0 commit comments

Comments
 (0)