Update package.json

Command: `npm run test:debug` raise error (because trying loading shell script but not js script):
--------------------------
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
          ^^^^^^^

SyntaxError: missing ) after argument list
------------

My fix correct it
This commit is contained in:
Sergey Katrevich
2023-02-17 11:56:12 +03:00
committed by GitHub
parent 3612320951
commit 2b8c6c6921
+1 -1
View File
@@ -15,7 +15,7 @@
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/jest/bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {