forked from gothinkster/realworld-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 28
/
jest.config.js
33 lines (32 loc) · 996 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
28
29
30
31
32
33
const { pathsToModuleNameMapper } = require('ts-jest');
const { compilerOptions } = require('./tsconfig');
module.exports = {
rootDir: 'src',
testEnvironment: 'node',
transform: {
'^.+\\.tsx?$': 'ts-jest',
},
collectCoverage: false,
coverageDirectory: `${__dirname}/coverage`,
coverageReporters: ['lcov', 'text'],
collectCoverageFrom: [
'**/*.ts',
'!**/*.spec.ts',
'!**/*.module.ts',
'!**/@generated/**',
],
testRegex: ['(\\.|/)(test|spec)\\.[jt]sx?$'],
// testMatch: ['<rootDir>/src/**/*.spec.ts'],
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'],
// modulePathIgnorePatterns: ['<rootDir>/dist'],
moduleNameMapper: pathsToModuleNameMapper(compilerOptions.paths, {
prefix: '<rootDir>/../',
}),
// modulePathIgnorePatterns: ['<rootDir>/app_modules'],
globals: {
'ts-jest': {
diagnostics: false,
isolatedModules: true,
},
},
};