https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 1b9f585a1e6ccbce1ba3ecd72d3d0aa53c58ec0e authored by ankit-tailor on 05 July 2022, 13:08:52 UTC
fix: docs link
Tip revision: 1b9f585
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