开玩笑testMatch问题

时间:2019-12-12 12:53:37

标签: javascript unit-testing jestjs integration-testing config

我正在尝试使用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很难找到正确的文件。 您对如何使一切恢复正常并运行一些平滑的集成测试有任何想法吗?

0 个答案:

没有答案