https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: cf8392ac90c204d32ac13bf0ba2321aa6385be9f authored by Aditya Jamuar on 08 December 2021, 13:54:04 UTC
v3.3.0-rc.2
Tip revision: cf8392a
jest-ios.config.js
const config = {
  preset: 'jest-expo/ios',
  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