react-native-compressor
react-native-compressor copied to clipboard
Apparently linked problem using Jest
Current behavior
The package is working fine, but when i trying to run couple of tests they are failing because of the following error:
Expected behavior
During our tests won't see any error related to this package.
Platform
- [X] Android
- [X] iOS
React Native Version
0.72.6
React Native Compressor Version
1.8.12
Reproducible Steps And Demo
👋 @ManuF17 Thanks for opening your issue here! If you find this package useful hit the star🌟!
You should mock it:
jest.mock('react-native-compressor', () => ({
Image: {
compress: uri => Promise.resolve(uri)
}
}));