https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 6a2a84ceef16c84a826a54ad10fdfcaf9d16c509 authored by Suraj Ahmed on 30 March 2022, 05:55:54 UTC
fix: custom prop typing changed to partial
Tip revision: 6a2a84c
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