Skip to content

Commit 37d5d42

Browse files
committed
test: fix party normalize
1 parent 70c0936 commit 37d5d42

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/test-out-resolve.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ test('only input should return file.ext', async t => {
1616
});
1717

1818
test('only input should return tmp/file.ext', async t => {
19-
t.is(await outResolve('tmp/file.ext'), path.normalize('tmp/file.ext'));
19+
t.is(await outResolve('tmp/file.ext'), 'tmp/file.ext');
2020
});
2121

2222
test('input file and output file should return output.ext', async t => {
@@ -36,6 +36,6 @@ test('input files and output file should return output.ext', async t => {
3636
});
3737

3838
test('input files and output file should return tmp/output.ext', async t => {
39-
t.is(await outResolve('test/*', 'tmp/output.ext'), path.normalize('tmp/output.ext'));
39+
t.is(await outResolve('test/*', 'tmp/output.ext'), 'tmp/output.ext');
4040
});
4141

0 commit comments

Comments
 (0)