| 123456789101112131415 |
- module.exports = {
- collectCoverageFrom: [
- '<rootDir>/src/Components/**/*.{jsx, tsx}',
- '<rootDir>/src/App.{jsx, tsx}',
- ],
- coverageReporters: ['html', 'text', 'text-summary', 'cobertura'],
- moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'],
- preset: 'react-native',
- setupFiles: ['./node_modules/react-native-gesture-handler/jestSetup.js'],
- setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
- testMatch: ['**/*.test.ts?(x)', '**/*.test.js?(x)'],
- transformIgnorePatterns: [
- 'node_modules/(?!(jest-)?react-native|@react-native|@react-native-community|@react-navigation|ky)',
- ],
- };
|