Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 189 Bytes

testing.md

File metadata and controls

12 lines (10 loc) · 189 Bytes
id title
testing
Testing

To mock when using Jest, add the bellow code on your __mock__ directory:

jest.mock('react-native-share', () => ({
  default: jest.fn(),
}));