Skip to content
Snippets Groups Projects
Select Git revision
  • c15d3156dcfb596f7bf1c166c92b26a8523ccab6
  • annotation-on-video default protected
  • demo_ci
  • 3-upstream-01022023
  • master
  • gh3538-captions
  • 16-adapt-for-images-annot
  • 15-api-for-annotations-on-video
  • 15-annotations-on-videos
  • video_for_annotations
  • wip-1-annotations-on-videos
  • 9-videoviewer-tests
  • 9_wip_videotests
  • 6-fix-tests-and-ci
  • _fix_ci
  • wip-webpack-from-git
16 results

jest.json

Blame
  • jest.json 582 B
    {
      "collectCoverage": true,
      "collectCoverageFrom": [
        "src/**/*.{js,jsx}",
        "!src/**/index*.js",
        "!src/containers/**/*.{js,jsx}"
      ],
      "coverageDirectory": "<rootDir>/coverage",
      "coverageReporters": ["html", "lcov"],
      "moduleNameMapper": {
        "\\.s?css$": "<rootDir>/__mocks__/css.js"
      },
      "setupFiles": [
        "<rootDir>/setupJest.js"
      ],
      "setupFilesAfterEnv": [
        "<rootDir>/setup-expect-timeout.js"
      ],
      "testMatch": [
        "<rootDir>/**/__tests__/**/*.{js,jsx}",
        "<rootDir>/src/**/?(*.)(spec|test|unit).{js,jsx}"
      ],
      "preset": "jest-puppeteer"
    }