https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 597574cba4492c058e57dfb8cd5c965d25a5d9f1 authored by Suraj Ahmed on 20 January 2022, 07:47:18 UTC
v3.3.3-rc.6
Tip revision: 597574c
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