https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 5ecb1a814702e24d9dd472225832b5747bd71e21 authored by amars29 on 05 April 2022, 07:56:36 UTC
fix: set width of Input according to wrapper
Tip revision: 5ecb1a8
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