Skip to content

Instantly share code, notes, and snippets.

@jasongaare
Created May 24, 2017 18:14
Show Gist options
  • Save jasongaare/98657788ce80414e7f7ee04777d98684 to your computer and use it in GitHub Desktop.
Save jasongaare/98657788ce80414e7f7ee04777d98684 to your computer and use it in GitHub Desktop.
Our first React Native test using Jest
// __tests__/Login-page-test.js
import 'react-native';
import React from 'react';
import Login from 'components/sessions/login';
import renderer from 'react-test-renderer';
it('renders correctly', () => {
const tree = renderer.create(
<Login />
).toJSON();
expect(tree).toMatchSnapshot();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment