From 5db5ae56e942c20cca58da28894351345991588c Mon Sep 17 00:00:00 2001 From: AdriAt360 Date: Wed, 8 Jun 2022 11:52:51 +0200 Subject: [PATCH] Revert "fix: use path.resolve in the test utils as well" This reverts commit eebeaf08bbfd02ecd749c703b8105176de143235. --- tests/src/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/utils.js b/tests/src/utils.js index e48abf656a..ed04aa9678 100644 --- a/tests/src/utils.js +++ b/tests/src/utils.js @@ -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() {