Fix skip() error on CI
Apparently you can't call skip() directly from a describe() block.
This commit is contained in:
parent
0b3eda5d82
commit
657d5c4c42
1 changed files with 3 additions and 1 deletions
|
@ -550,7 +550,9 @@ describe("Document Recognition", function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("canUnrecognize()", function () {
|
describe("canUnrecognize()", function () {
|
||||||
|
before(function () {
|
||||||
if (Zotero.automatedTest) this.skip(); // TODO: Mock services
|
if (Zotero.automatedTest) this.skip(); // TODO: Mock services
|
||||||
|
});
|
||||||
|
|
||||||
async function getRecognizedItem() {
|
async function getRecognizedItem() {
|
||||||
let search;
|
let search;
|
||||||
|
|
Loading…
Reference in a new issue