https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 9f455c35aab2a8f4f5d1b8862dd6f6ddf60c1ef6 authored by Suraj Ahmed on 09 June 2022, 14:30:05 UTC
fix: added expo example
Tip revision: 9f455c3
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