Jest TypeError: Path must be a string. Received undefined

后端 未结 7 1715
小蘑菇
小蘑菇 2020-12-10 10:48

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

相关标签:
7条回答
  • 2020-12-10 11:04

    I solved this issue using:

    • npm uninstall -g jest
    • npm install -g jest
    • npm cache clean
    • npm install
    0 讨论(0)
  • 2020-12-10 11:04

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

    0 讨论(0)
  • 2020-12-10 11:05

    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

    0 讨论(0)
  • 2020-12-10 11:09

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

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

    0 讨论(0)
  • 2020-12-10 11:09

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

    0 讨论(0)
  • 2020-12-10 11:10

    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

    0 讨论(0)
提交回复
热议问题