Commit fdc626b

Anton Golub <antongolub@antongolub.com>
2022-06-10 19:16:22
test: protect env.PATH from npm/node/yarn side-effects (#433)
1 parent 9bcedad
Changed files (1)
package.json
@@ -37,7 +37,7 @@
   "scripts": {
     "fmt": "prettier --write .",
     "build": "tsc",
-    "test": "tsc && uvu test -i fixtures",
+    "test": "tsc && PATH=$(env -i bash -c 'echo $PATH') node_modules/.bin/uvu test -i fixtures",
     "coverage": "c8 --check-coverage npm test -- -i package",
     "mutation": "stryker run"
   },