https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 125384d0769eeab9ea5f3f4c6bf4a5864d1e6fbd authored by Viraj-10 on 22 August 2022, 11:07:55 UTC
fix: arrow forward icon
Tip revision: 125384d
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