@@ -24,26 +24,24 @@ Results.prototype.createStream = function () {
24
24
var self = this ;
25
25
var output = resumer ( ) ;
26
26
output . queue ( 'TAP version 13\n' ) ;
27
-
28
- nextTick ( function ( ) {
29
- var t = getNextTest ( self ) ;
30
- if ( t ) t . run ( )
31
- else self . emit ( 'done' )
27
+
28
+ nextTick ( function next ( ) {
29
+ var t ;
30
+ while ( t = getNextTest ( self ) ) {
31
+ t . run ( ) ;
32
+ if ( ! t . ended ) return t . once ( 'end' , function ( ) { nextTick ( next ) ; } ) ;
33
+ }
34
+ self . emit ( 'done' ) ;
32
35
} ) ;
33
36
self . _stream . pipe ( output ) ;
34
-
37
+
35
38
return output ;
36
39
} ;
37
40
38
41
Results . prototype . push = function ( t ) {
39
42
var self = this ;
40
43
self . tests . push ( t ) ;
41
44
self . _watch ( t ) ;
42
- t . once ( 'end' , function ( ) {
43
- var nt = getNextTest ( self ) ;
44
- if ( nt ) nt . run ( )
45
- else self . emit ( 'done' )
46
- } ) ;
47
45
} ;
48
46
49
47
Results . prototype . only = function ( name ) {
@@ -69,7 +67,7 @@ Results.prototype._watch = function (t) {
69
67
}
70
68
write ( encodeResult ( res , self . count + 1 ) ) ;
71
69
self . count ++ ;
72
-
70
+
73
71
if ( res . ok ) self . pass ++
74
72
else self . fail ++
75
73
} ) ;
@@ -82,35 +80,35 @@ Results.prototype.close = function () {
82
80
if ( self . closed ) self . _stream . emit ( 'error' , new Error ( 'ALREADY CLOSED' ) ) ;
83
81
self . closed = true ;
84
82
var write = function ( s ) { self . _stream . queue ( s ) } ;
85
-
83
+
86
84
write ( '\n1..' + self . count + '\n' ) ;
87
85
write ( '# tests ' + self . count + '\n' ) ;
88
86
write ( '# pass ' + self . pass + '\n' ) ;
89
87
if ( self . fail ) write ( '# fail ' + self . fail + '\n' )
90
88
else write ( '\n# ok\n' )
91
-
89
+
92
90
self . _stream . queue ( null ) ;
93
91
} ;
94
92
95
93
function encodeResult ( res , count ) {
96
94
var output = '' ;
97
95
output += ( res . ok ? 'ok ' : 'not ok ' ) + count ;
98
96
output += res . name ? ' ' + res . name . toString ( ) . replace ( / \s + / g, ' ' ) : '' ;
99
-
97
+
100
98
if ( res . skip ) output += ' # SKIP' ;
101
99
else if ( res . todo ) output += ' # TODO' ;
102
-
100
+
103
101
output += '\n' ;
104
102
if ( res . ok ) return output ;
105
-
103
+
106
104
var outer = ' ' ;
107
105
var inner = outer + ' ' ;
108
106
output += outer + '---\n' ;
109
107
output += inner + 'operator: ' + res . operator + '\n' ;
110
-
108
+
111
109
var ex = json . stringify ( res . expected , getSerialize ( ) ) || '' ;
112
110
var ac = json . stringify ( res . actual , getSerialize ( ) ) || '' ;
113
-
111
+
114
112
if ( Math . max ( ex . length , ac . length ) > 65 ) {
115
113
output += inner + 'expected:\n' + inner + ' ' + ex + '\n' ;
116
114
output += inner + 'actual:\n' + inner + ' ' + ac + '\n' ;
@@ -130,14 +128,14 @@ function encodeResult (res, count) {
130
128
output += inner + lines [ i ] + '\n' ;
131
129
}
132
130
}
133
-
131
+
134
132
output += outer + '...\n' ;
135
133
return output ;
136
134
}
137
135
138
136
function getSerialize ( ) {
139
137
var seen = [ ] ;
140
-
138
+
141
139
return function ( key , value ) {
142
140
var ret = value ;
143
141
if ( typeof value === 'object' && value ) {
@@ -148,7 +146,7 @@ function getSerialize () {
148
146
break ;
149
147
}
150
148
}
151
-
149
+
152
150
if ( found ) ret = '[Circular]'
153
151
else seen . push ( value )
154
152
}
0 commit comments