fitaiProto/apps/mobile/jest.setup.js
2025-11-07 20:59:56 +01:00

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',
}))