golabek | ec4f954 | 2019-01-28 09:34:48 +0100 | [diff] [blame] | 1 | module.exports = { |
| 2 | verbose: true, |
| 3 | roots: [ |
| 4 | "<rootDir>/src/main/webapp/app" |
| 5 | ], |
| 6 | modulePaths: [ |
| 7 | "<rootDir>/src/main/webapp/app/vid/external" |
| 8 | ], |
| 9 | setupFilesAfterEnv: ["<rootDir>/test-config.js"], |
Wojciech Sliwka | 8e3b16a | 2019-03-21 14:01:50 +0100 | [diff] [blame] | 10 | collectCoverage: false, |
golabek | ec4f954 | 2019-01-28 09:34:48 +0100 | [diff] [blame] | 11 | collectCoverageFrom: [ |
| 12 | "src/**/*.js", |
| 13 | "!**/node_modules/**", |
| 14 | "!**/vendor/**" |
| 15 | ] |
Wojciech Sliwka | 8e3b16a | 2019-03-21 14:01:50 +0100 | [diff] [blame] | 16 | }; |