-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
jest.config.js
41 lines (39 loc) · 872 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
34
35
36
37
38
39
40
41
module.exports = {
moduleFileExtensions: ['ts', 'js', 'json'],
transform: {
'^.+\\.(ts|tsx)$': [
'ts-jest',
{
tsconfig: 'tsconfig.json',
diagnostics: false,
},
],
},
testMatch: ['**/__tests__/**/*.spec.(ts|js)'],
testPathIgnorePatterns: ['integrationTests'],
testEnvironment: 'node',
coverageThreshold: {
global: {
branches: 0,
functions: 0,
lines: 0,
statements: 0,
},
},
collectCoverageFrom: [
'**/src/**/*.{ts,js}',
'!**/src/__tests__/**',
'!**/node_modules/**',
'!**/dist/**',
'!packages/webhid-demo/**',
],
collectCoverage: true,
projects: ['<rootDir>'],
coverageDirectory: '<rootDir>/coverage/',
preset: 'ts-jest',
moduleNameMapper: {
'@elgato-stream-deck/node-lib': '<rootDir>/packages/node-lib/src/lib.ts',
'@elgato-stream-deck/(.+)': '<rootDir>/packages/$1/src',
'^(..?/.+).js?$': '$1',
},
}