forked from graphql-compose/graphql-compose-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.config.js
33 lines (33 loc) · 801 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
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
globals: {
'ts-jest': {
tsconfig: '<rootDir>/tsconfig.json',
isolatedModules: true,
diagnostics: false,
},
},
moduleFileExtensions: ['ts', 'js'],
transform: {
'^.+\\.(ts|js)$': 'ts-jest',
},
roots: ['<rootDir>'],
testPathIgnorePatterns: ['/node_modules/', '/dist/', '/tmp/'],
reporters: [
'default',
[
'jest-junit',
{
outputDirectory: 'coverage/junit/',
outputName: 'jest-junit.xml',
classNameTemplate: '{classname} › {title}',
titleTemplate: '{classname} › {title}',
suiteName: '{filepath}',
addFileAttribute: 'true',
ancestorSeparator: ' › ',
usePathForSuiteName: 'true',
},
],
],
};