https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 8dca565539f3324b59e50d5d70fc37b549d8371f authored by Suraj Ahmed on 24 June 2022, 13:23:42 UTC
v3.5.0-alpha.1
Tip revision: 8dca565
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