https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: c13339c21f030c1e1cf3dbe050693edeb2108d6c authored by ankit-tailor on 31 March 2022, 05:46:42 UTC
fix: icon size
Tip revision: c13339c
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