Rocket.Chat.ReactNative/jest.config.js

15 lines
668 B
JavaScript
Raw Permalink Normal View History

module.exports = {
testPathIgnorePatterns: ['e2e', 'node_modules'],
transformIgnorePatterns: [
'node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg)'
],
preset: './jest.preset.js',
coverageDirectory: './coverage/',
collectCoverage: true,
moduleNameMapper: {
'.+\\.(css|styl|less|sass|scss)$': 'identity-obj-proxy',
'.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$': '<rootDir>/__mocks__/fileMock.js'
},
setupFilesAfterEnv: ['./jest.setup.js']
};