运行 npm test 时忽略 e2e 文件夹

Posted

技术标签:

【中文标题】运行 npm test 时忽略 e2e 文件夹【英文标题】:Ignore e2e folder when running npm test 【发布时间】:2019-07-22 11:39:00 【问题描述】:

我使用 detox 作为我的 react-native 应用程序的 end-2-end 测试器,但我不希望在运行 npm test 时包含 e2e 文件夹中的内容。我目前正在使用 jest 进行 npm 测试。

这就是我的 package.json 中的内容:

 "jest": 
        "preset": "react-native",
        "transformIgnorePatterns": [
          "node_modules/(?!(react-native|static-container|expo|@expo|react-navigation))"
        ]
      , 

e2e 文件夹位于我的根目录中,我的测试文件也在我的根目录中的 tests 文件夹中。

【问题讨论】:

【参考方案1】:

为了在运行我的 jest 测试时解决这个问题,我使用了 testMatch 属性并将其设置在 package.json 中,这意味着它只会匹配我指定的文件夹中的测试。

"jest": 
  "preset": "react-native",
  "testMatch": [
  "<rootDir>/__tests__/**/*.test.js?(x)",
  "<rootDir>/app/**/*.test.js"
  ]
,

或者,您可以使用忽略特定路径。

"jest": 
  "preset": "react-native",
  "testPathIgnorePatterns": [
    "<rootDir>/e2e"
  ]
,

【讨论】:

对不起,我以为我按下了它。再次感谢

以上是关于运行 npm test 时忽略 e2e 文件夹的主要内容,如果未能解决你的问题,请参考以下文章

忽略 npm 构建的文件

npm publish 在尝试发布到 github 包注册表时忽略 dist 目录中的文件

无法运行 cucumber 'npm test' 命令不起作用

Vue Cypress 和 Gitlab CI/CD

指定 jest 测试文件目录

“ng e2e”可能因代理而失败,但“ng serve”和“ng test”正在运行