https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: e9c93f5490c464c8eebd2d716ddf13e9e610f37d authored by mayank-96 on 16 March 2022, 05:52:25 UTC
fix: design changes
Tip revision: e9c93f5
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