We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e459ffb commit 2aaea54Copy full SHA for 2aaea54
src/interceptors/fresh-chrome.ts
@@ -67,6 +67,9 @@ export class FreshChrome implements Interceptor {
67
]
68
}, this.config.configPath);
69
70
+ browser.process.stdout.pipe(process.stdout);
71
+ browser.process.stderr.pipe(process.stderr);
72
+
73
await hideWarningServer.completedPromise;
74
await hideWarningServer.stop();
75
src/interceptors/fresh-firefox.ts
@@ -119,6 +119,9 @@ export class FreshFirefox implements Interceptor {
119
})
120
121
122
123
124
125
let success = false;
126
certCheckServer.waitForSuccess().then(() => {
127
success = true;
0 commit comments