Skip to content

Commit

Permalink
Revert "fix: use path.resolve in the test utils as well"
Browse files Browse the repository at this point in the history
This reverts commit eebeaf0.
  • Loading branch information
AdriAt360 committed Jun 8, 2022
1 parent eebeaf0 commit 5db5ae5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/utils.js
Expand Up @@ -13,7 +13,7 @@ export const parsers = {
};

export function testFilePath(relativePath) {
return path.resolve(process.cwd(), './tests/files', relativePath);
return path.join(process.cwd(), './tests/files', relativePath);
}

export function getTSParsers() {
Expand Down

0 comments on commit 5db5ae5

Please sign in to comment.