Skip to content

Commit

Permalink
fixed stopping qunit test runner after first test
Browse files Browse the repository at this point in the history
  • Loading branch information
wki committed Feb 29, 2012
1 parent 44d8907 commit 172f2b4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/js/qunit.js
Expand Up @@ -20,7 +20,9 @@ window.addEventListener("load", function(){
print(ansi.green + result.passed + " passed, " + ansi.none);
print("Total " + result.total);
puts("");

Ichabod.exit();
};

QUnit.done = function() {
Ichabod.exit();
};
});

0 comments on commit 172f2b4

Please sign in to comment.