Clear Zotero.skipLoading after data directory tests

This was causing a startup error in the re-enabled debug output tests,
which don't reset app state.
This commit is contained in:
Dan Stillman 2023-05-25 05:44:18 -04:00
parent 6e2ec2300d
commit 117dbe1fe0

View file

@ -48,6 +48,7 @@ describe("Zotero.DataDirectory", function () {
afterEach(function* () {
yield removeDir(oldDir);
yield removeDir(newDir);
Zotero.skipLoading = false;
Zotero.DataDirectory._cache(false);
yield Zotero.DataDirectory.init();
});