https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 73b62932a66e07d3a1c100a6e0a3571f88f814c5 authored by MD-REHMAN on 14 January 2022, 05:38:32 UTC
feat: updated bug and feature template
Tip revision: 73b6293
jest-android.config.js
const config = {
  preset: 'jest-expo/android',
  transformIgnorePatterns: [
    '<rootDir>/../node_modules/(?!(jest-)?react-native|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|@sentry/.*)',
  ],
  setupFilesAfterEnv: ['<rootDir>/__mocks__/globalMock.js'],
};

module.exports = config;
back to top