We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b66f8f8 commit f90e487Copy full SHA for f90e487
test/common.js
@@ -39,7 +39,8 @@ module.exports.stripFullStack = function (output) {
39
var stripChangingData = function (line) {
40
var withoutTestDir = line.replace(__dirname, '$TEST');
41
var withoutPackageDir = withoutTestDir.replace(path.dirname(__dirname), '$TAPE');
42
- var withoutLineNumbers = withoutPackageDir.replace(/:\d+:\d+/g, ':$LINE:$COL');
+ var withoutPathSep = withoutPackageDir.replace(new RegExp('\\' + path.sep, 'g'), '/');
43
+ var withoutLineNumbers = withoutPathSep.replace(/:\d+:\d+/g, ':$LINE:$COL');
44
var withoutNestedLineNumbers = withoutLineNumbers.replace(/, \<anonymous\>:\$LINE:\$COL\)$/, ')');
45
return withoutNestedLineNumbers;
46
}
0 commit comments