react-native-inappbrowser icon indicating copy to clipboard operation
react-native-inappbrowser copied to clipboard

Add unit tests with Jest

Open jdnichollsc opened this issue 6 years ago • 1 comments

Remember to export the jest setup file...

jdnichollsc avatar Aug 23 '19 20:08 jdnichollsc

If anyone has a problem with setting jest right now create a file __mocks__/react-native-inappbrowser-reborn.js and then add there:

export default {
  open: jest.fn(),
  close: jest.fn(),
  openAuth: jest.fn(),
  closeAuth: jest.fn(),
  isAvailable: jest.fn(),
}

Expand when you need more for testing.

radko93 avatar Dec 24 '19 08:12 radko93