https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 6e475be193eada877681cebff00c7f955b4eea8e authored by Suraj Ahmed on 05 April 2022, 06:20:34 UTC
fix: switch typing
Tip revision: 6e475be
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