https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: fef654cbdc49bd39851bbf3eb55e6f35928ea61a authored by Rohit Singh on 02 June 2022, 07:32:09 UTC
fix: removed undwanted comments
Tip revision: fef654c
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