Merge pull request #19335 from Snuffleupagus/test-rm-console-log-spam

Reduce console spam when running tests in Firefox
This commit is contained in:
Jonas Jenwald 2025-01-17 11:29:23 +01:00 committed by GitHub
commit 45a32b7c58
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -952,6 +952,8 @@ async function startBrowser({
"browser.newtabpage.enabled": false, "browser.newtabpage.enabled": false,
// Disable network connections to Contile. // Disable network connections to Contile.
"browser.topsites.contile.enabled": false, "browser.topsites.contile.enabled": false,
// Disable logging for remote settings.
"services.settings.loglevel": "off",
...extraPrefsFirefox, ...extraPrefsFirefox,
}; };
} }