Skip to content

Instantly share code, notes, and snippets.

@orYoffe
Last active January 1, 2018 13:20
Show Gist options
  • Save orYoffe/2198d6b53f5de3540e36531ce0a10aeb to your computer and use it in GitHub Desktop.
Save orYoffe/2198d6b53f5de3540e36531ce0a10aeb to your computer and use it in GitHub Desktop.
React Native Web starter app Button Component test
import { Platform } from 'react-native';
it('renders properly - ' + Platform.OS, () => { // <= 'ios' || 'web'
const mockFunc = jest.fn();
const tree = renderer.create(
<Button text={text} onClick={mockFunc} />
);
expect(tree.toJSON()).toMatchSnapshot();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment