1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-24 09:08:07 +02:00

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.
This commit is contained in:
Jonas Jenwald 2025-01-17 10:58:46 +01:00
parent 88735d0f14
commit 534bd3e4a8

View file

@ -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,
};
}