deepsite / jest.config.js
Ivano97's picture
Upload 17 files
f19c267 verified
raw
history blame
363 Bytes
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,
},
},
};