From 534bd3e4a8af37fe379bdc381fd4d9aa53b5ecf8 Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Fri, 17 Jan 2025 10:58:46 +0100 Subject: [PATCH] Reduce console spam when running tests in Firefox Rather than waiting for the upstream patch to reach the Firefox version we're using with Puppeteer, let's just set the same preference as done in https://phabricator.services.mozilla.com/D234320. --- test/test.mjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test.mjs b/test/test.mjs index 3f031b066..d685dce9d 100644 --- a/test/test.mjs +++ b/test/test.mjs @@ -952,6 +952,8 @@ async function startBrowser({ "browser.newtabpage.enabled": false, // Disable network connections to Contile. "browser.topsites.contile.enabled": false, + // Disable logging for remote settings. + "services.settings.loglevel": "off", ...extraPrefsFirefox, }; }