以下設置爲我的package.jsonJest TypeError:路徑必須是字符串。收到undefined
如果我從命令行運行npm test
所有jest測試用例都正確執行。 如果我直接使用命令jest
命令行我收到此錯誤:在任何測試文件
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)
出現這種情況。
任何想法可能是錯的,以及如何解決它?
"scripts": {
"test": "standard && jest",
"format": "standard --fix",
"start": "webpack-dev-server --config webpack.config.dev.js",
"build": "webpack --config webpack.config.prod.js"
},
我有同樣的問題,迄今爲止沒有幫助。 – Simoroshka