forked from nestjs/typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 6
/
jest.config.js
27 lines (26 loc) · 888 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
const { pathsToModuleNameMapper } = require('ts-jest/utils');
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'],
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>/..' }*/,
),
globals: {
'ts-jest': {
diagnostics: false,
isolatedModules: true,
},
},
};