olavoparno/jest-badges-readme

View on GitHub
jestconfig.json

Summary

Maintainability
Test Coverage
{
  "transform": {
    "^.+\\.(t|j)sx?$": "ts-jest"
  },
  "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
  "moduleFileExtensions": [
    "ts", 
    "js", 
    "json", 
    "node"
  ],
  "coverageReporters": [
    "json-summary",
    "text",
    "lcov"
  ],
  "coverageThreshold": {
    "global": {
      "branches": 90,
      "functions": 95,
      "lines": 95,
      "statements": 95
    }
  },
  "coveragePathIgnorePatterns": [
    "/node_modules/",
    "/test/",
    "/dist/"
  ],
  "collectCoverage": true
}