From cf530751044291324edc1b5a9ad304cccf3c7c37 Mon Sep 17 00:00:00 2001 From: Garry Tan Date: Tue, 25 Aug 2026 19:31:38 +0000 Subject: [PATCH] test: raise carve-section-loading wall clock to 480s SDK / 540s bun MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The heavy full-workflow scenarios satisfy their required section reads inside 60s but need 300-450s to finish the report on slower sandboxes; the 300s default read as a loading failure when the carve invariant held (traces: plan-eng-review read its section at 8s, office-hours all three at 24s, design-html both at 50s — all timed out mid-report). Co-Authored-By: Claude Fable 5 --- test/carve-section-loading.test.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/test/carve-section-loading.test.ts b/test/carve-section-loading.test.ts index 075f2c79e..0cd521371 100644 --- a/test/carve-section-loading.test.ts +++ b/test/carve-section-loading.test.ts @@ -72,6 +72,12 @@ describeE2E('carve behavioral section-loading (periodic, SDK capture)', () => { reportMarker: /report|review|summary|design doc|handoff/i, testName: `${guard.skill} section-loading`, runId, + // 480s, not the helper's 300s default: the heavy full-workflow + // scenarios (plan-eng-review, office-hours, design-html) satisfy + // their required section reads inside 60s but need 300-450s of + // wall clock to finish the report on slower sandboxes — a timeout + // there reads as a loading failure when the carve invariant held. + timeout: 480_000, }); const missing = guard.requiredReads.filter((s) => !readSections.has(s)); @@ -91,7 +97,7 @@ describeE2E('carve behavioral section-loading (periodic, SDK capture)', () => { }); expect(output.trim().length).toBeGreaterThan(200); }, - 360_000, + 540_000, ); } });