File tree 4 files changed +9
-7
lines changed
4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ module.exports.getDiag = function (body) {
22
22
// placeholder $TEST variable.
23
23
// 2) Line positions within the file might change. We handle this by replacing
24
24
// line and column markers with placeholder $LINE and $COL "variables"
25
+ // a) node 0.8 does not provide nested eval line numbers, so we remove them
25
26
// 3) Stacks themselves change frequently with refactoring. We've even run into
26
27
// issues with node library refactorings "breaking" stack traces. Most of
27
28
// these changes are irrelevant to the tests themselves. To counter this, we
@@ -35,7 +36,8 @@ module.exports.stripFullStack = function (output) {
35
36
var stripChangingData = function ( line ) {
36
37
var withoutDirectory = line . replace ( __dirname , '$TEST' ) ;
37
38
var withoutLineNumbers = withoutDirectory . replace ( / : \d + : \d + / g, ':$LINE:$COL' ) ;
38
- return withoutLineNumbers ;
39
+ var withoutNestedLineNumbers = withoutLineNumbers . replace ( / , \< a n o n y m o u s \> : \$ L I N E : \$ C O L \) $ / , ')' ) ;
40
+ return withoutNestedLineNumbers ;
39
41
}
40
42
41
43
if ( m ) {
Original file line number Diff line number Diff line change @@ -56,8 +56,8 @@ tap.test('exit fail', function (t) {
56
56
' Error: should be equivalent' ,
57
57
' [... stack stripped ...]' ,
58
58
' at $TEST/exit/fail.js:$LINE:$COL' ,
59
- ' at eval (eval at <anonymous> ($TEST/exit/fail.js:$LINE:$COL), <anonymous>:$LINE:$COL )' ,
60
- ' at eval (eval at <anonymous> ($TEST/exit/fail.js:$LINE:$COL), <anonymous>:$LINE:$COL )' ,
59
+ ' at eval (eval at <anonymous> ($TEST/exit/fail.js:$LINE:$COL))' ,
60
+ ' at eval (eval at <anonymous> ($TEST/exit/fail.js:$LINE:$COL))' ,
61
61
' at Test.<anonymous> ($TEST/exit/fail.js:$LINE:$COL)' ,
62
62
' [... stack stripped ...]' ,
63
63
' ...' ,
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ tap.test('array test', function (tt) {
26
26
' Error: should be equivalent' ,
27
27
' [... stack stripped ...]' ,
28
28
' at $TEST/fail.js:$LINE:$COL' ,
29
- ' at eval (eval at <anonymous> ($TEST/fail.js:$LINE:$COL), <anonymous>:$LINE:$COL )' ,
30
- ' at eval (eval at <anonymous> ($TEST/fail.js:$LINE:$COL), <anonymous>:$LINE:$COL )' ,
29
+ ' at eval (eval at <anonymous> ($TEST/fail.js:$LINE:$COL))' ,
30
+ ' at eval (eval at <anonymous> ($TEST/fail.js:$LINE:$COL))' ,
31
31
' at Test.<anonymous> ($TEST/fail.js:$LINE:$COL)' ,
32
32
' [... stack stripped ...]' ,
33
33
' ...' ,
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ tap.test('array test', function (tt) {
26
26
' Error: plan != count' ,
27
27
' [... stack stripped ...]' ,
28
28
' at $TEST/too_many.js:$LINE:$COL' ,
29
- ' at eval (eval at <anonymous> ($TEST/too_many.js:$LINE:$COL), <anonymous>:$LINE:$COL )' ,
30
- ' at eval (eval at <anonymous> ($TEST/too_many.js:$LINE:$COL), <anonymous>:$LINE:$COL )' ,
29
+ ' at eval (eval at <anonymous> ($TEST/too_many.js:$LINE:$COL))' ,
30
+ ' at eval (eval at <anonymous> ($TEST/too_many.js:$LINE:$COL))' ,
31
31
' at Test.<anonymous> ($TEST/too_many.js:$LINE:$COL)' ,
32
32
' [... stack stripped ...]' ,
33
33
' ...' ,
You can’t perform that action at this time.
0 commit comments