Skip to content

Commit 092344b

Browse files
committed
Fix bug from #303 / 289b590
1 parent d5e1a5e commit 092344b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ function createHarness (conf_) {
139139
test.only = function () {
140140
if (only) throw new Error('there can only be one only test');
141141
only = true;
142-
t = test.apply(null, arguments);
142+
var t = test.apply(null, arguments);
143143
results.only(t);
144144
return t;
145145
};

0 commit comments

Comments
 (0)