-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.config.js
27 lines (27 loc) · 973 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
export default {
testEnvironment: 'jsdom',
transform: {
'^.+\\.(ts|tsx)$': ['ts-jest', {
useESM: true,
tsconfig: 'tsconfig.json'
}],
'^.+\\.(js|jsx)$': ['babel-jest', { rootMode: 'upward' }]
},
moduleNameMapper: {
'\\.(css|less|scss|sass)$': 'identity-obj-proxy',
'^(\\.{1,2}/.*)\\.js$': '$1'
},
setupFilesAfterEnv: ['<rootDir>/src/setupTests.ts'],
testMatch: ['<rootDir>/src/**/__tests__/**/*.[jt]s?(x)', '<rootDir>/src/**/?(*.)+(spec|test).[jt]s?(x)'],
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
collectCoverageFrom: [
'src/**/*.{js,jsx,ts,tsx}',
'!src/**/*.stories.{js,jsx,ts,tsx}',
'!src/setupTests.ts',
'!.history/**/*'
],
coverageDirectory: 'coverage',
coverageReporters: ['text', 'lcov'],
extensionsToTreatAsEsm: ['.ts', '.tsx'],
testPathIgnorePatterns: ['/node_modules/', '/.history/'],
};