https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 19e4223b7d496440d9e694d3d92436f7e230ecd5 authored by Suraj Ahmed on 20 September 2022, 07:04:03 UTC
v3.4.17-rc.0
Tip revision: 19e4223
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