5

我最近从 Mocha 切换到 Jest。除了始终运行所有测试的监视模式(不仅与文档中所说的未提交文件相关的测试)外,一切正常。我已经搜索了文档和谷歌,但我没有找到关于这个问题的任何信息。

我的笑话配置是

  "jest": {
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/generated/",
      "/mock/",
      "/tools/",
      "/transactions/"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 90,
        "functions": 90,
        "lines": 90,
        "statements": 90
      }
    },
    "resetMocks": true,
    "moduleDirectories": [
      "node_modules",
      "src"
    ],
    "moduleNameMapper": {
      "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/__mocks__/fileMock.js",
      "\\.(css|less|scss)$": "<rootDir>/src/__mocks__/styleMock.js"
    },
    "setupTestFrameworkScriptFile": "<rootDir>/tools/setupTest.js"
  },

setupTestFrameworkScriptFile唯一包含一行 :

require('babel-polyfill');

巴别尔:

 "env": {
    "test": {
      "plugins": [
        "rewire",
        "transform-class-properties",
        "transform-es2015-modules-commonjs"
      ],
      "presets": [
        "es2017",
        "react",
        "stage-0",
        "es2015"
      ]
    }
  }

我开始测试jest --watch并打印消息“确定要运行的测试套件”,但是即使没有文件未提交,所有测试也会运行。

我在 Windows 7 上,我在 powershell 中运行命令。节点版本:v6.9.1
Jest 版本:"babel-jest": "20.0.3""jest": "20.0.4"

4

1 回答 1

0

老实说,我猜,但除了coveragePathIgnorePatterns 之外,请尝试使用testPathIgnorePatterns。

于 2018-02-06T21:46:05.160 回答