We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ba18ac commit d2f0778Copy full SHA for d2f0778
test/common.js
@@ -90,6 +90,10 @@ module.exports.stripFullStack = function (output) {
90
// Handle stack trace variation in Node v0.8
91
/at(:?) (Test\.)?tap\.test\.test\.skip/g,
92
'at$1 $2<anonymous>'
93
+ ).replace(
94
+ // Handle more stack trace variation in Node v0.8
95
+ /at(:?) Test.tap.test.([^ ]+)/g,
96
+ 'at$1 Test.$2'
97
).replace(
98
99
/(\[\.\.\. stack stripped \.\.\.\]\r?\n *at) <anonymous> \(([^)]+)\)/g,
0 commit comments