https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: c411d8da41d8e47298a4724e195b280c2e5f18bd authored by ankit-tailor on 25 January 2022, 13:16:15 UTC
fix: props for input base
Tip revision: c411d8d
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