https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: b4821a48b53d9a8451d7f250cbb5d24f4c0cb59e authored by Aditya Jamuar on 09 December 2021, 11:44:23 UTC
v3.3.0-rc.3
Tip revision: b4821a4
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