CI: Temporarily disable BlockingObserver to fix HTTP request failures
This commit is contained in:
parent
70d999291b
commit
df3b9fa425
1 changed files with 5 additions and 0 deletions
|
@ -41,6 +41,11 @@ class BlockingObserver {
|
||||||
* @param {(uri: nsIURI) => boolean} shouldBlock
|
* @param {(uri: nsIURI) => boolean} shouldBlock
|
||||||
*/
|
*/
|
||||||
constructor({ shouldBlock }) {
|
constructor({ shouldBlock }) {
|
||||||
|
// TEMP: Disable in CI for now to avoid HTTP request failures
|
||||||
|
if (Zotero.automatedTest) {
|
||||||
|
this.shouldBlock = false;
|
||||||
|
return;
|
||||||
|
}
|
||||||
this.shouldBlock = shouldBlock;
|
this.shouldBlock = shouldBlock;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue