https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 7d04cb4d70b33b957832cab96795a747c06f6de1 authored by Suraj Ahmed on 26 July 2022, 06:18:17 UTC
fix: added in npm ignore expo example
Tip revision: 7d04cb4
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