Jest TypeError: Path must be a string. Received undefined

故事扮演 提交于 2019-11-30 16:57:24

I am not entirely sure what the problem here is, but I was facing the same issue and what worked for me was updating the Jest version. I was using 20 but I switched to 21 and now it magically works again.

Update version in package.json and then run rm -rf node_modules && npm install

I solved this issue using:

  • npm uninstall -g jest
  • npm install -g jest
  • npm cache clean
  • npm install

In my case i had to update jest to version 21.x (from 20.x).

Try running npm install jest@latest --save-dev.

For me, it was the jest-cli package bumping to 21.x. So npm update jest-cli --save-dev

For me I had to downgrade. Version 21.x worked for me.

I solved this issue using:

remove node_modules remove package-lock.json

remove dev dependence from package.json of jest npm remove jest --save-dev.

npm cache clean

then run command npm install

then install npm install jest@latest --save-dev

this works for me

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!