-
Notifications
You must be signed in to change notification settings - Fork 3
/
jest.config.js
27 lines (27 loc) · 902 Bytes
/
jest.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module.exports = {
verbose: true,
notify: true,
testEnvironment: 'node',
cacheDirectory: '.jest-cache',
// The root of your source code, typically /src
// `<rootDir>` is a token Jest substitutes
// roots: ["<rootDir>/src"],
// Jest transformations -- this adds support for TypeScript
// using ts-jest
transform: {
"^.+\\.ts$": "ts-jest"
},
// Module file extensions for importing
moduleFileExtensions: ['ts', 'js', 'json'],
testRegex: '(/test/.*|(\\.|/)(spec))\\.ts$',
collectCoverage: true,
collectCoverageFrom: ['*.js', '!*.config.js', '!**/node_modules/**'],
coverageDirectory: 'coverage',
coveragePathIgnorePatterns: ['/node_modules/', '/template/'],
coverageReporters: ['json', 'lcov', 'text', 'clover'],
displayName: {
name: 'JS',
color: 'pink'
},
testPathIgnorePatterns: ['<rootDir>/node_modules/', '<rootDir>/coverage/', '/template/']
};