CI: Temporarily disable BlockingObserver to fix HTTP request failures

This commit is contained in:
Dan Stillman 2024-04-11 05:29:17 -04:00
parent 70d999291b
commit df3b9fa425

View file

@ -41,6 +41,11 @@ class BlockingObserver {
* @param {(uri: nsIURI) => boolean} shouldBlock
*/
constructor({ shouldBlock }) {
// TEMP: Disable in CI for now to avoid HTTP request failures
if (Zotero.automatedTest) {
this.shouldBlock = false;
return;
}
this.shouldBlock = shouldBlock;
}