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 d545741 commit 3981b50Copy full SHA for 3981b50
.github/workflows/run-tests.yml
@@ -43,6 +43,8 @@ jobs:
43
44
- name: Run tests
45
run: npm run test
46
+ env:
47
+ DEBUG: puppeteer:*
48
49
# Gating job for branch protection.
50
test-success:
src/browser.ts
@@ -106,6 +106,7 @@ export async function launch(options: McpLaunchOptions): Promise<Browser> {
106
pipe: true,
107
headless,
108
args,
109
+ dumpio: true,
110
});
111
if (options.logFile) {
112
// FIXME: we are probably subscribing too late to catch startup logs. We
0 commit comments