Skip to content

Commit

Permalink
print info
Browse files Browse the repository at this point in the history
  • Loading branch information
nanometerzhu committed Feb 20, 2024
1 parent 437e19d commit 03845e3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions e2e/src/fullstack.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 03845e3

Please sign in to comment.