Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
156
rated 0 times [  163] [ 7]  / answers: 1 / hits: 35453  / 7 Years ago, thu, september 14, 2017, 12:00:00

Below settings for my package.json



If I run from command line npm test all jest test cases are executed properly.
In case I use directly the command jest from command line I receive this error:




Test suite failed to run



TypeError: Path must be a string. Received undefined

at assertPath (path.js:7:11)
at Object.relative (path.js:538:5)



This happens on any test files.



Any idea what could be wrong and how to fix it?



 scripts: {
test: standard && jest,
format: standard --fix,
start: webpack-dev-server --config webpack.config.dev.js,
build: webpack --config webpack.config.prod.js
},

More From » webpack

 Answers
12

I solved this issue using:




  • npm uninstall -g jest

  • npm install -g jest

  • npm cache clean

  • npm install


[#56483] Monday, September 11, 2017, 7 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
kaceyr

Total Points: 510
Total Questions: 97
Total Answers: 116

Location: Solomon Islands
Member since Fri, Oct 8, 2021
3 Years ago
kaceyr questions
;