@@ -37,27 +37,27 @@ tap.test('preserves stack trace with newlines', function (tt) {
37
37
38
38
stream . pipe ( concat ( function ( body ) {
39
39
var strippedBody = stripAt ( body . toString ( 'utf8' ) ) ;
40
- tt . equal (
41
- strippedBody ,
42
- 'TAP version 13\n'
43
- + '# multiline stack trace\n'
44
- + 'not ok 1 Error: Preserve stack\n'
45
- + ' ---\n'
46
- + ' operator: error\n'
47
- + ' expected: |-\n'
48
- + ' undefined\n'
49
- + ' actual: |-\n'
50
- + ' [Error: Preserve stack]\n'
51
- + ' stack: |-\n'
52
- + ' foo\n'
53
- + ' bar\n'
54
- + ' ...\n'
55
- + '\n'
56
- + '1..1\n'
57
- + '# tests 1\n'
58
- + '# pass 0\n'
59
- + '# fail 1\n '
60
- ) ;
40
+ tt . deepEqual ( strippedBody . split ( '\n' ) , [ ] . concat (
41
+ 'TAP version 13' ,
42
+ '# multiline stack trace' ,
43
+ 'not ok 1 Error: Preserve stack' ,
44
+ ' ---' ,
45
+ ' operator: error' ,
46
+ ' expected: |-' ,
47
+ ' undefined' ,
48
+ ' actual: |-' ,
49
+ ' [Error: Preserve stack]' ,
50
+ ' stack: |-' ,
51
+ ' foo' ,
52
+ ' bar' ,
53
+ ' ...' ,
54
+ '' ,
55
+ '1..1' ,
56
+ '# tests 1' ,
57
+ '# pass 0' ,
58
+ '# fail 1' ,
59
+ ' '
60
+ ) ) ;
61
61
62
62
tt . deepEqual ( getDiag ( strippedBody , true ) , {
63
63
stack : stackTrace ,
@@ -201,26 +201,24 @@ tap.test('preserves stack trace for failed assertions', function (tt) {
201
201
202
202
stream . pipe ( concat ( function ( body ) {
203
203
var strippedBody = stripAt ( body . toString ( 'utf8' ) ) ;
204
- tt . equal (
205
- strippedBody ,
206
- 'TAP version 13\n'
207
- + '# t.equal stack trace\n'
208
- + 'not ok 1 true should be false\n'
209
- + ' ---\n'
210
- + ' operator: equal\n'
211
- + ' expected: false\n'
212
- + ' actual: true\n'
213
- + ' stack: |-\n'
214
- + ' '
215
- + stack . replace ( / \n / g, '\n ' )
216
- + '\n'
217
- + ' ...\n'
218
- + '\n'
219
- + '1..1\n'
220
- + '# tests 1\n'
221
- + '# pass 0\n'
222
- + '# fail 1\n'
223
- ) ;
204
+ tt . deepEqual ( strippedBody . split ( '\n' ) , [ ] . concat (
205
+ 'TAP version 13' ,
206
+ '# t.equal stack trace' ,
207
+ 'not ok 1 true should be false' ,
208
+ ' ---' ,
209
+ ' operator: equal' ,
210
+ ' expected: false' ,
211
+ ' actual: true' ,
212
+ ' stack: |-' ,
213
+ ( '\n' + stack ) . replace ( / \n / g, '\n ' ) . split ( '\n' ) . slice ( 1 ) ,
214
+ ' ...' ,
215
+ '' ,
216
+ '1..1' ,
217
+ '# tests 1' ,
218
+ '# pass 0' ,
219
+ '# fail 1' ,
220
+ ''
221
+ ) ) ;
224
222
225
223
tt . deepEqual ( getDiag ( strippedBody , true ) , {
226
224
stack : stack ,
@@ -266,26 +264,24 @@ tap.test('preserves stack trace for failed assertions where actual===falsy', fun
266
264
267
265
stream . pipe ( concat ( function ( body ) {
268
266
var strippedBody = stripAt ( body . toString ( 'utf8' ) ) ;
269
- tt . equal (
270
- strippedBody ,
271
- 'TAP version 13\n'
272
- + '# t.equal stack trace\n'
273
- + 'not ok 1 false should be true\n'
274
- + ' ---\n'
275
- + ' operator: equal\n'
276
- + ' expected: true\n'
277
- + ' actual: false\n'
278
- + ' stack: |-\n'
279
- + ' '
280
- + stack . replace ( / \n / g, '\n ' )
281
- + '\n'
282
- + ' ...\n'
283
- + '\n'
284
- + '1..1\n'
285
- + '# tests 1\n'
286
- + '# pass 0\n'
287
- + '# fail 1\n'
288
- ) ;
267
+ tt . deepEqual ( strippedBody . split ( '\n' ) , [ ] . concat (
268
+ 'TAP version 13' ,
269
+ '# t.equal stack trace' ,
270
+ 'not ok 1 false should be true' ,
271
+ ' ---' ,
272
+ ' operator: equal' ,
273
+ ' expected: true' ,
274
+ ' actual: false' ,
275
+ ' stack: |-' ,
276
+ ( '\n' + stack ) . replace ( / \n / g, '\n ' ) . split ( '\n' ) . slice ( 1 ) ,
277
+ ' ...' ,
278
+ '' ,
279
+ '1..1' ,
280
+ '# tests 1' ,
281
+ '# pass 0' ,
282
+ '# fail 1' ,
283
+ ''
284
+ ) ) ;
289
285
290
286
tt . deepEqual ( getDiag ( strippedBody , true ) , {
291
287
stack : stack ,
0 commit comments