Skip to content

Commit

Permalink
Add some needed logging
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBlueBurger committed Oct 14, 2023
1 parent b7db7e2 commit 5480a1a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Server/test/testUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export default new class TestUtil {
console.log(`starting ${this.testName} at port ${this.port}`)
await new Promise((r) => {
newProcess.stdout.on("data", m => {
console.log(`${this.testName} | ${m.toString()}`);
if(m.toString().includes(`port ${this.port}`)) {
clearTimeout(timeout);
r(1);
Expand Down

0 comments on commit 5480a1a

Please sign in to comment.