Skip to content

Testing

Shaunak Das edited this page Jan 23, 2018 · 2 revisions

Jest Setup

Starter Article

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();
});

Workarounds on issues

Clone this wiki locally