From 0680b498c9b8852a86962f5deb80fabb55d108b3 Mon Sep 17 00:00:00 2001 From: Nikolay Vitkov <34244704+Lightning00Blade@users.noreply.github.com> Date: Tue, 7 Mar 2023 17:00:05 +0100 Subject: [PATCH] chore: fix action debugging option parsing (#9796) --- tools/mochaRunner/src/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/mochaRunner/src/main.ts b/tools/mochaRunner/src/main.ts index 5008f113..537283ec 100644 --- a/tools/mochaRunner/src/main.ts +++ b/tools/mochaRunner/src/main.ts @@ -112,11 +112,11 @@ async function main() { const githubActionDebugging = process.env['RUNNER_DEBUG'] ? { DEBUG: 'puppeteer:*', - EXTRA_LAUNCH_OPTIONS: { + EXTRA_LAUNCH_OPTIONS: JSON.stringify({ extraPrefsFirefox: { 'remote.log.level': 'Trace', }, - }, + }), } : {};