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