Skip to content

Commit 624c4ce

Browse files
committed
ci: normalize path for windows
1 parent 7c878c3 commit 624c4ce

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/test-out-resolve.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ test('input file and output folder should return tmp/file.ext', async t => {
2828
});
2929

3030
test('input files and output folder should return tmp/test/*.ext', async t => {
31-
t.is(await outResolve('tmp/test/*.ext', undefined), path.normalize('tmp/test/*.ext'));
31+
t.is(await outResolve(path.normalize('tmp/test/*.ext'), undefined), path.normalize('tmp/test/*.ext'));
3232
});
3333

3434
test('input files and output file should return output.ext', async t => {

0 commit comments

Comments
 (0)