react-native-inappbrowser
react-native-inappbrowser copied to clipboard
Add unit tests with Jest
Remember to export the jest setup file...
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.