-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.config.ts
53 lines (51 loc) · 1.47 KB
/
jest.config.ts
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import { pathsToModuleNameMapper } from 'ts-jest';
// @ts-ignore
import { compilerOptions } from './tsconfig.json';
export default {
projects: [
{
displayName: 'Unit',
moduleFileExtensions: ['js', 'json', 'ts'],
rootDir: 'src',
testRegex: '.spec.ts$',
transform: {
'^.+\\.ts$': [
'ts-jest',
{
compiler: 'ttypescript',
tsconfig: 'tsconfig.test.json',
},
],
},
coverageDirectory: '../coverage',
testEnvironment: 'node',
setupFiles: ['<rootDir>/config/env.ts', 'jest-ts-auto-mock'],
moduleDirectories: ['node_modules', __dirname],
moduleNameMapper: pathsToModuleNameMapper(compilerOptions.paths),
preset: 'ts-jest',
setupFilesAfterEnv: ['../jest.setup.js'],
},
{
displayName: 'E2E',
moduleFileExtensions: ['js', 'json', 'ts'],
rootDir: 'test',
testRegex: '.spec.ts$',
transform: {
'^.+\\.ts$': [
'ts-jest',
{
compiler: 'ttypescript',
tsconfig: 'tsconfig.test.json',
},
],
},
coverageDirectory: '../coverage',
testEnvironment: 'node',
setupFiles: ['<rootDir>/../src/config/env.ts', 'jest-ts-auto-mock'],
moduleDirectories: ['node_modules', __dirname],
moduleNameMapper: pathsToModuleNameMapper(compilerOptions.paths),
preset: 'ts-jest',
setupFilesAfterEnv: ['../jest.setup.js'],
},
],
};