Skip to content

Commit 49d6acf

Browse files
author
benholloway
committed
fixed windows paths on test runner
1 parent 1b74cd4 commit 49d6acf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/build/browserify.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function jasmineTransform(symbol) {
5252
return transformTools.makeFalafelTransform('jasmineTransform', null, function (node, options, done) {
5353
var isValid = isLiteralAST(node, symbol) && isMethodAST(node.parent, 'describe', 'module');
5454
if (isValid) {
55-
node.update('\'' + options.file + ':0:0\'');
55+
node.update('\'' + options.file.replace(/\\/g, '\\\\') + ':0:0\'');
5656
}
5757
done();
5858
});

0 commit comments

Comments
 (0)