www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit b6673511f748be5e1d8b7a826a97ed115066df5e
parent 299009dcd5c21e0a47d25d0c8fddfa1068894f30
Author: Simon Kornblith <simon@simonster.com>
Date:   Sun,  8 Mar 2015 18:40:29 -0400

Close recognizePDF windows when tests finish

Diffstat:
Mtest/tests/recognizePDF.js | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/test/tests/recognizePDF.js b/test/tests/recognizePDF.js @@ -10,6 +10,11 @@ describe("PDF Recognition", function() { win = w; }); }); + afterEach(function() { + for(let win of getWindows("chrome://zotero/content/pdfProgress.xul")) { + win.close(); + } + }); after(function() { win.close(); });