From 7f789f4a6f6a4f89495c770bed74d5e5d0e01d44 Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Thu, 29 Feb 2024 13:38:41 -0800 Subject: [PATCH] more timeout --- 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 fe669c3134024..0331c65e18e4f 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 = 10_000) { +async function waitForPrompt(cp, rawAssertion, timeout = 30_000) { let assertion if (typeof rawAssertion === 'string') { assertion = (chunk) => chunk.includes(rawAssertion)