From a46404ebd07f1704d0e95a04a721189b6d9ce0c1 Mon Sep 17 00:00:00 2001 From: Pavel Jbanov Date: Sun, 14 Jul 2024 14:20:59 -0400 Subject: [PATCH] debug --- tests/src/utils.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/src/utils.ts b/tests/src/utils.ts index 1613f9800..364c7ed38 100644 --- a/tests/src/utils.ts +++ b/tests/src/utils.ts @@ -120,11 +120,12 @@ export async function genkitStart( done = true; reject(new Error('timeout waiting for genkit start to start')); } - }, 10000); + }, 20000); appProcess.stdout?.on('data', (data) => { console.log('stdout: ' + data.toString()); const match = data.toString().match(/Genkit Tools UI: ([^ ]*)/); + console.log(" - - - ", match && match.length > 1) if (match && match.length > 1) { console.log('Developer UI ready, launching test ' + match[1]); if (done) {