File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ var jobRunner = (function() {
142
142
resolve = arguments [ 0 ] ;
143
143
reject = arguments [ 1 ] ;
144
144
} ) ;
145
- var task = {
145
+ task = {
146
146
isolated : isolated ,
147
147
task : {
148
148
code : task + "" ,
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ module.exports = function mochaRun(progress) {
6
6
function checkTimers ( ) {
7
7
var keys = Object . keys ( timers ) ;
8
8
for ( var i = 0 ; i < keys . length ; ++ i ) {
9
- key = keys [ i ] ;
9
+ var key = keys [ i ] ;
10
10
var timer = timers [ key ] ;
11
11
if ( ! timer ) continue ;
12
12
if ( currentTime >= ( timer . started + timer . time ) ) {
@@ -127,7 +127,7 @@ module.exports = function mochaRun(progress) {
127
127
error = failures [ 0 ] . error ;
128
128
}
129
129
else {
130
- message = "\u001b[31mSome tests failed: \u001b[m\n"
130
+ var message = "\u001b[31mSome tests failed: \u001b[m\n"
131
131
failures . forEach ( function ( failResult ) {
132
132
message += " " + failResult . name + " " + failAdvice ( failResult . name ) + "\n" ;
133
133
} ) ;
You can’t perform that action at this time.
0 commit comments