commit 3ebc238320a7f000da31cf4edea37236c0cabd48
parent ccb30351c0b7961fe8ee2ac11378585749e6dc0e
Author: Dan Stillman <dstillman@zotero.org>
Date: Wed, 14 Jun 2017 03:36:29 -0400
Close prefs window after WebDAV Verify Server tests
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/test/tests/webdavTest.js b/test/tests/webdavTest.js
@@ -610,6 +610,8 @@ describe("Zotero.Sync.Storage.Mode.WebDAV", function () {
var promise2 = spy.returnValues[0];
spy.restore();
yield promise2;
+
+ win.close();
});
it("should show an error for a 403", function* () {
@@ -643,6 +645,8 @@ describe("Zotero.Sync.Storage.Mode.WebDAV", function () {
var promise2 = spy.returnValues[0];
spy.restore();
yield promise2;
+
+ win.close();
});
});