https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 56e39488c2ce7e61c844fd190211e3ce6fb677e5 authored by Suraj Ahmed on 13 July 2022, 14:54:53 UTC
fix: extended theme issue
Tip revision: 56e3948
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