forked from stoplightio/prism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jest.config.js
64 lines (61 loc) · 1.81 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
const { pathsToModuleNameMapper } = require('ts-jest/utils');
const path = require('path');
const { mapValues } = require('lodash');
const { compilerOptions } = require('./packages/tsconfig.test');
// Due to invalid typings built-in to `json-schema-faker` we had to force typescript to load
// typings from @types/json-schema-faker instead
const pathsMappings = Object.fromEntries(
Object.entries(compilerOptions.paths).filter(([name]) => name.startsWith('@stoplight'))
);
const projectDefault = {
moduleNameMapper: mapValues(pathsToModuleNameMapper(pathsMappings), v => path.resolve(path.join('packages', v))),
testEnvironment: 'node',
transform: {
'^.+\\.(ts)$': 'ts-jest',
},
};
module.exports = {
projects: [
{
...projectDefault,
displayName: 'HTTP-SERVER',
testMatch: ['<rootDir>/packages/http-server/src/**/__tests__/*.*.ts'],
globals: {
'ts-jest': {
tsconfig: '<rootDir>/packages/tsconfig.test.json',
},
},
},
{
...projectDefault,
displayName: 'HTTP',
testMatch: ['<rootDir>/packages/http/src/**/__tests__/*.*.ts'],
globals: {
'ts-jest': {
tsconfig: '<rootDir>/packages/tsconfig.test.json',
},
},
},
{
...projectDefault,
displayName: 'CORE',
testMatch: ['<rootDir>/packages/core/src/**/__tests__/*.*.ts'],
globals: {
'ts-jest': {
tsconfig: '<rootDir>/packages/tsconfig.test.json',
},
},
},
{
...projectDefault,
displayName: 'CLI',
testMatch: ['<rootDir>/packages/cli/src/**/__tests__/*.*.ts'],
globals: {
'ts-jest': {
tsconfig: '<rootDir>/packages/tsconfig.test.json',
},
},
},
],
collectCoverageFrom: ['**/src/**/*.{ts,tsx}', '!**/src/**/__tests__/**/*.{ts,tsx}'],
};