Skip to content

Commit

Permalink
Rewrite path.sep
Browse files Browse the repository at this point in the history
  • Loading branch information
HyunSangHan committed Mar 17, 2020
1 parent d08e369 commit 42d39ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/reporters/xunit.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ describe('XUnit reporter', function() {
});

describe("when 'reporterOptions.output' is provided", function() {
var expectedOutput = path.join('path', 'to', 'some-output');
var expectedOutput = path.join(path.sep, 'path', 'to', 'some-output');
var options = {
reporterOptions: {
output: expectedOutput
Expand Down

0 comments on commit 42d39ef

Please sign in to comment.