https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: c14770a2d44d189ff49bbcb1ac02eb16c19b4502 authored by Suraj Ahmed on 05 April 2022, 13:50:12 UTC
fix: merge conflict resolved
Tip revision: c14770a
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