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.
22 lines
651 B
22 lines
651 B
module.exports = { |
|
coverageDirectory: 'coverage', |
|
collectCoverage: true, |
|
collectCoverageFrom: ['src/**/*.{ts,tsx}'], |
|
coverageThreshold: { |
|
global: { |
|
branches: 93, |
|
functions: 99, |
|
lines: 99, |
|
statements: 99, |
|
}, |
|
}, |
|
coveragePathIgnorePatterns: ['<rootDir>/src/components/scrolling-carousel'], |
|
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'], |
|
};
|
|
|