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 17edcd8 commit 6cb73b6Copy full SHA for 6cb73b6
.github/workflows/run-tests.yml
@@ -46,6 +46,8 @@ jobs:
46
- name: Run tests
47
shell: bash
48
run: npm run test
49
+ env:
50
+ DEBUG: puppeteer:*
51
52
# Gating job for branch protection.
53
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