module.exports = { preset: 'jest-expo', transformIgnorePatterns: [ 'node_modules/(?!(jest-)?react-native|@react-native|expo|@expo|@unimodules)' ], collectCoverage: true, collectCoverageFrom: ['**/src/**/*.{ts,tsx}'], coverageThreshold: { global: { branches: 80, functions: 80, lines: 80, statements: 80, }, }, };