From 03845e3e0e6633c2dd0e164fd80de2625a0ff8eb Mon Sep 17 00:00:00 2001 From: Jianwei Zhu Date: Tue, 20 Feb 2024 21:28:56 +0000 Subject: [PATCH] print info --- e2e/src/fullstack.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/e2e/src/fullstack.js b/e2e/src/fullstack.js index 5ceb925f8..d5d3ec7ed 100644 --- a/e2e/src/fullstack.js +++ b/e2e/src/fullstack.js @@ -1248,7 +1248,8 @@ function testPruntimeManagement(workDir) { true, await checkUntil( async () => { - console.log(worker.processPRuntime.stopped); + console.log(JSON.stringify(worker.processPRuntime)); + console.log(JSON.stringify(await worker.api.getInfo())); return worker.processPRuntime.stopped; }, 60000 @@ -1270,7 +1271,8 @@ function testPruntimeManagement(workDir) { assertTrue( await checkUntil( async () => { - console.log(worker.processPRuntime.stopped); + console.log(JSON.stringify(worker.processPRuntime)); + console.log(JSON.stringify(await worker.api.getInfo())); return worker.processPRuntime.stopped; }, 60000