https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: c054471d36c8b8b27d66bc76e8f809a81796b4ec authored by Suraj Ahmed on 22 February 2022, 10:23:58 UTC
fix: platform props type
Tip revision: c054471
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