Skip to content

Commit f90e487

Browse files
committed
normalize path separators in stacks
1 parent b66f8f8 commit f90e487

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/common.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ module.exports.stripFullStack = function (output) {
3939
var stripChangingData = function (line) {
4040
var withoutTestDir = line.replace(__dirname, '$TEST');
4141
var withoutPackageDir = withoutTestDir.replace(path.dirname(__dirname), '$TAPE');
42-
var withoutLineNumbers = withoutPackageDir.replace(/:\d+:\d+/g, ':$LINE:$COL');
42+
var withoutPathSep = withoutPackageDir.replace(new RegExp('\\' + path.sep, 'g'), '/');
43+
var withoutLineNumbers = withoutPathSep.replace(/:\d+:\d+/g, ':$LINE:$COL');
4344
var withoutNestedLineNumbers = withoutLineNumbers.replace(/, \<anonymous\>:\$LINE:\$COL\)$/, ')');
4445
return withoutNestedLineNumbers;
4546
}

0 commit comments

Comments
 (0)