Skip to content

Commit

Permalink
Fix bug from #303 / 289b590
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Aug 5, 2016
1 parent d5e1a5e commit 092344b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ function createHarness (conf_) {
test.only = function () {
if (only) throw new Error('there can only be one only test');
only = true;
t = test.apply(null, arguments);
var t = test.apply(null, arguments);
results.only(t);
return t;
};
Expand Down

0 comments on commit 092344b

Please sign in to comment.