Skip to content

Commit 2aaea54

Browse files
committed
Pipe through firefox & chrome stdout & stderr
1 parent e459ffb commit 2aaea54

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/interceptors/fresh-chrome.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ export class FreshChrome implements Interceptor {
6767
]
6868
}, this.config.configPath);
6969

70+
browser.process.stdout.pipe(process.stdout);
71+
browser.process.stderr.pipe(process.stderr);
72+
7073
await hideWarningServer.completedPromise;
7174
await hideWarningServer.stop();
7275

src/interceptors/fresh-firefox.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,9 @@ export class FreshFirefox implements Interceptor {
119119
})
120120
}, this.config.configPath);
121121

122+
browser.process.stdout.pipe(process.stdout);
123+
browser.process.stderr.pipe(process.stderr);
124+
122125
let success = false;
123126
certCheckServer.waitForSuccess().then(() => {
124127
success = true;

0 commit comments

Comments
 (0)