@@ -68,6 +68,42 @@ tap.test('preserves stack trace with newlines', function (tt) {
68
68
} ) ;
69
69
} ) ;
70
70
71
+ tap . test ( 'parses function name from original stack' , function ( tt ) {
72
+ tt . plan ( 1 ) ;
73
+
74
+ var test = tape . createHarness ( ) ;
75
+ test . createStream ( ) ;
76
+
77
+ test . _results . _watch = function ( t ) {
78
+ t . on ( 'result' , function ( res ) {
79
+ tt . equal ( 'Test.testFunctionNameParsing' , res . functionName )
80
+ } ) ;
81
+ } ;
82
+
83
+ test ( 't.equal stack trace' , function testFunctionNameParsing ( t ) {
84
+ t . equal ( true , false , 'true should be false' ) ;
85
+ t . end ( ) ;
86
+ } ) ;
87
+ } ) ;
88
+
89
+ tap . test ( 'parses function name from original stack for anonymous function' , function ( tt ) {
90
+ tt . plan ( 1 ) ;
91
+
92
+ var test = tape . createHarness ( ) ;
93
+ test . createStream ( ) ;
94
+
95
+ test . _results . _watch = function ( t ) {
96
+ t . on ( 'result' , function ( res ) {
97
+ tt . equal ( 'Test.<anonymous>' , res . functionName )
98
+ } ) ;
99
+ } ;
100
+
101
+ test ( 't.equal stack trace' , function ( t ) {
102
+ t . equal ( true , false , 'true should be false' ) ;
103
+ t . end ( ) ;
104
+ } ) ;
105
+ } ) ;
106
+
71
107
tap . test ( 'preserves stack trace for failed assertions' , function ( tt ) {
72
108
tt . plan ( 6 ) ;
73
109
@@ -214,4 +250,4 @@ function getDiag (body) {
214
250
215
251
function stripAt ( body ) {
216
252
return body . replace ( / ^ \s * a t : \s + T e s t .* $ \n / m, '' ) ;
217
- }
253
+ }
0 commit comments