Disable tracing for now due to Playwright MCP behavior (#273171)

Haven't been able to figure out how to get tracing working without issues... so reverting the change.

Opened an issue here:
https://github.com/microsoft/playwright-mcp/issues/1166
This commit is contained in:
Tyler James Leonhardt
2025-10-24 12:32:08 -07:00
committed by GitHub
parent 7734232405
commit 41d5f1ce55
3 changed files with 2 additions and 4 deletions

View File

@@ -260,7 +260,7 @@ export async function getApplication({ recordVideo }: { recordVideo?: boolean }
verbose: opts.verbose,
remote: opts.remote,
web: opts.web,
tracing: true,
tracing: opts.tracing,
headless: opts.headless,
browser: opts.browser,
extraArgs: (opts.electronArgs || '').split(' ').map(arg => arg.trim()).filter(arg => !!arg),