You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

21 lines
573 B

module.exports = {
coverageDirectory: 'coverage',
collectCoverage: true,
collectCoverageFrom: ['src/**/*.{ts,tsx}'],
coverageThreshold: {
global: {
branches: 83,
functions: 83,
lines: 83,
statements: 83,
},
},
testPathIgnorePatterns: ['<rootDir>/__tests__/__fixtures__/'],
transform: {
'^.+\\.tsx?$': 'ts-jest',
'^.+\\.css$': 'jest-transform-css',
},
setupFilesAfterEnv: ['@testing-library/jest-dom/extend-expect'],
testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$',
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
};