aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/jest.config.js
blob: 3f72db3be252fa15e78e6ab4097a08ff4690e0a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module.exports = {
  verbose: true,
  roots: [
    "<rootDir>/src/main/webapp/app"
  ],
  modulePaths: [
    "<rootDir>/src/main/webapp/app/vid/external"
  ],
  setupFilesAfterEnv: ["<rootDir>/test-config.js"],
  collectCoverage: false,
  collectCoverageFrom: [
    "src/**/*.js",
    "!**/node_modules/**",
    "!**/vendor/**"
  ]
};