-
Notifications
You must be signed in to change notification settings - Fork 0
Testing
Shaunak Das edited this page Jan 23, 2018
·
2 revisions
- Medium React Native Jest
- Dont include Enzyme section
- Jest tests any file *.test.js
import 'react-native';
import React from 'react';
import AllGames from '../components/all-games';
import renderer from 'react-test-renderer';
it('renders correctly', () => {
const tree = renderer.create(
<AllGames />
).toJSON();
expect(tree).toMatchSnapshot();
});