https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: bd260a96b0ff00257698317f4de9a96c673e3826 authored by mayank-96 on 23 March 2022, 06:35:14 UTC
fix: resolve conflict
Tip revision: bd260a9
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