CI: Proper disabling of BlockingObserver for #3962
This commit is contained in:
parent
bef389e110
commit
80357b1938
1 changed files with 2 additions and 1 deletions
|
@ -42,8 +42,9 @@ class BlockingObserver {
|
|||
*/
|
||||
constructor({ shouldBlock }) {
|
||||
// TEMP: Disable in CI for now to avoid HTTP request failures
|
||||
// https://github.com/zotero/zotero/issues/3962
|
||||
if (Zotero.automatedTest) {
|
||||
this.shouldBlock = false;
|
||||
this.shouldBlock = () => false;
|
||||
return;
|
||||
}
|
||||
this.shouldBlock = shouldBlock;
|
||||
|
|
Loading…
Reference in a new issue