Update setup.js

This commit is contained in:
Marcos Rodriguez Velez 2024-05-15 10:08:22 -04:00
parent 7b3b48e3b5
commit bb575ee633
No known key found for this signature in database
GPG key ID: 6030B2F48CCE86D7

View file

@ -59,6 +59,7 @@ jest.mock('react-native-device-info', () => {
getDeviceType: jest.fn().mockReturnValue(false), getDeviceType: jest.fn().mockReturnValue(false),
hasGmsSync: jest.fn().mockReturnValue(true), hasGmsSync: jest.fn().mockReturnValue(true),
hasHmsSync: jest.fn().mockReturnValue(false), hasHmsSync: jest.fn().mockReturnValue(false),
isTablet: jest.fn().mockReturnValue(false),
}; };
}); });