From 3d6d8dcd5b11065becd4d8268978b9523f6b59b5 Mon Sep 17 00:00:00 2001 From: Garry Tan Date: Mon, 23 Mar 2026 20:38:02 -0700 Subject: [PATCH] =?UTF-8?q?fix:=20increase=20browse=20E2E=20maxTurns=203?= =?UTF-8?q?=E2=86=925=20for=20CI=20recovery=20margin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 3 turns was too tight — if the first goto needs a retry (server still warming up after pre-warm), the agent has no recovery budget. Co-Authored-By: Claude Opus 4.6 (1M context) --- test/skill-e2e-bws.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/skill-e2e-bws.test.ts b/test/skill-e2e-bws.test.ts index 46672217..259efa08 100644 --- a/test/skill-e2e-bws.test.ts +++ b/test/skill-e2e-bws.test.ts @@ -45,7 +45,7 @@ describeIfSelected('Skill E2E tests', [ 4. $B screenshot /tmp/skill-e2e-test.png Report the results of each command.`, workingDirectory: tmpDir, - maxTurns: 3, + maxTurns: 5, timeout: 60_000, testName: 'browse-basic', runId, @@ -67,7 +67,7 @@ Report the results of each command.`, 5. $B snapshot -i -a -o /tmp/skill-e2e-annotated.png Report what each command returned.`, workingDirectory: tmpDir, - maxTurns: 3, + maxTurns: 5, timeout: 60_000, testName: 'browse-snapshot', runId,