@@ -24,7 +24,7 @@ Results.prototype.createStream = function () {
24
24
var self = this ;
25
25
var output = resumer ( ) ;
26
26
output . queue ( 'TAP version 13\n' ) ;
27
-
27
+
28
28
nextTick ( function next ( ) {
29
29
var t ;
30
30
while ( t = getNextTest ( self ) ) {
@@ -34,7 +34,7 @@ Results.prototype.createStream = function () {
34
34
self . emit ( 'done' ) ;
35
35
} ) ;
36
36
self . _stream . pipe ( output ) ;
37
-
37
+
38
38
return output ;
39
39
} ;
40
40
@@ -59,7 +59,7 @@ Results.prototype._watch = function (t) {
59
59
t . once ( 'prerun' , function ( ) {
60
60
write ( '# ' + t . name + '\n' ) ;
61
61
} ) ;
62
-
62
+
63
63
t . on ( 'result' , function ( res ) {
64
64
if ( typeof res === 'string' ) {
65
65
write ( '# ' + res + '\n' ) ;
@@ -71,7 +71,7 @@ Results.prototype._watch = function (t) {
71
71
if ( res . ok ) self . pass ++
72
72
else self . fail ++
73
73
} ) ;
74
-
74
+
75
75
t . on ( 'test' , function ( st ) { self . _watch ( st ) } ) ;
76
76
} ;
77
77
@@ -80,7 +80,7 @@ Results.prototype.close = function () {
80
80
if ( self . closed ) self . _stream . emit ( 'error' , new Error ( 'ALREADY CLOSED' ) ) ;
81
81
self . closed = true ;
82
82
var write = function ( s ) { self . _stream . queue ( s ) } ;
83
-
83
+
84
84
write ( '\n1..' + self . count + '\n' ) ;
85
85
write ( '# tests ' + self . count + '\n' ) ;
86
86
write ( '# pass ' + self . pass + '\n' ) ;
@@ -94,21 +94,21 @@ function encodeResult (res, count) {
94
94
var output = '' ;
95
95
output += ( res . ok ? 'ok ' : 'not ok ' ) + count ;
96
96
output += res . name ? ' ' + res . name . toString ( ) . replace ( / \s + / g, ' ' ) : '' ;
97
-
97
+
98
98
if ( res . skip ) output += ' # SKIP' ;
99
99
else if ( res . todo ) output += ' # TODO' ;
100
-
100
+
101
101
output += '\n' ;
102
102
if ( res . ok ) return output ;
103
-
103
+
104
104
var outer = ' ' ;
105
105
var inner = outer + ' ' ;
106
106
output += outer + '---\n' ;
107
107
output += inner + 'operator: ' + res . operator + '\n' ;
108
-
108
+
109
109
var ex = json . stringify ( res . expected , getSerialize ( ) ) || '' ;
110
110
var ac = json . stringify ( res . actual , getSerialize ( ) ) || '' ;
111
-
111
+
112
112
if ( Math . max ( ex . length , ac . length ) > 65 ) {
113
113
output += inner + 'expected:\n' + inner + ' ' + ex + '\n' ;
114
114
output += inner + 'actual:\n' + inner + ' ' + ac + '\n' ;
@@ -128,14 +128,14 @@ function encodeResult (res, count) {
128
128
output += inner + lines [ i ] + '\n' ;
129
129
}
130
130
}
131
-
131
+
132
132
output += outer + '...\n' ;
133
133
return output ;
134
134
}
135
135
136
136
function getSerialize ( ) {
137
137
var seen = [ ] ;
138
-
138
+
139
139
return function ( key , value ) {
140
140
var ret = value ;
141
141
if ( typeof value === 'object' && value ) {
@@ -146,7 +146,7 @@ function getSerialize () {
146
146
break ;
147
147
}
148
148
}
149
-
149
+
150
150
if ( found ) ret = '[Circular]'
151
151
else seen . push ( value )
152
152
}
@@ -158,7 +158,7 @@ function getNextTest(results) {
158
158
if ( ! results . _only ) {
159
159
return results . tests . shift ( ) ;
160
160
}
161
-
161
+
162
162
do {
163
163
var t = results . tests . shift ( ) ;
164
164
if ( ! t ) {
0 commit comments