11 lines
284 B
JavaScript
11 lines
284 B
JavaScript
import 'react-native-gesture-handler/jestSetup'
|
|
|
|
jest.mock('react-native-reanimated', () => {
|
|
const Reanimated = require('react-native-reanimated/mock')
|
|
Reanimated.default.call = () => {}
|
|
return Reanimated
|
|
})
|
|
|
|
jest.mock('@expo/vector-icons', () => ({
|
|
Ionicons: 'Ionicons',
|
|
})) |