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.

23 lines
651 B

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