From f48b90b162c1a27a1ecaa8ae0a452e0a6605c35f Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Thu, 29 Feb 2024 13:47:42 -0800 Subject: [PATCH] even more --- scripts/start-release.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/start-release.js b/scripts/start-release.js index 0331c65e18e4f..597f161e18746 100644 --- a/scripts/start-release.js +++ b/scripts/start-release.js @@ -9,7 +9,7 @@ function getPromptErrorDetails(rawAssertion, mostRecentChunk) { return `Waiting for:\n "${assertion}"\nmost recent chunk was:\n "${mostRecent}"` } -async function waitForPrompt(cp, rawAssertion, timeout = 30_000) { +async function waitForPrompt(cp, rawAssertion, timeout = 120_000) { let assertion if (typeof rawAssertion === 'string') { assertion = (chunk) => chunk.includes(rawAssertion)