https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 98c17798b39792d428d8c0ec723888d266bf118d authored by ankit-tailor on 04 October 2022, 12:28:02 UTC
fix: hardware backpress conflict
Tip revision: 98c1779
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