https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: b26445158a5784a575823f9ea1574e67a1049c94 authored by ankit-tailor on 17 March 2022, 04:57:59 UTC
fix: remove imports
Tip revision: b264451
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