test: raise carve-section-loading wall clock to 480s SDK / 540s bun

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 <noreply@anthropic.com>
This commit is contained in:
Garry Tan
2026-08-25 19:31:38 +00:00
co-authored by Claude Fable 5
parent a37f2c48e3
commit cf53075104
+7 -1
View File
@@ -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,
);
}
});