我正在尝试使用npm test
对我的项目进行一些集成测试,并且我的目录如下:
Main_directory ==> tests ==> integration ==> auth.test.js和bar.test.js
在我的package.json
上,我已经知道了:
"scripts": {
"test": "jest --watchAll --verbose"
},
当我执行代码npm test时,我在终端上遇到了这个令人难以置信的错误:
未找到测试
In G:\main_directory
35 files checked.
testMatch: **/__tests__/**/*.js?(x),**/?(*.)(spec|test).js?(x) - 5 matches
testPathIgnorePatterns: \\node_modules\\ - 35 matches
Pattern: - 0 matches
似乎某些测试通过testPathIgnorePatterns
被忽略了,或者testMatch
很难找到正确的文件。
您对如何使一切恢复正常并运行一些平滑的集成测试有任何想法吗?