https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 72ed66c5b8cf41df53441e27bbb6694614a66edf authored by Suraj Ahmed on 11 October 2022, 12:31:26 UTC
v3.4.18
Tip revision: 72ed66c
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