UNPKG

create-personal-react-app

Version:
15 lines (13 loc) 366 B
import React from 'react'; import { shallow } from 'enzyme'; import toJson from 'enzyme-to-json'; import { Home } from './index'; describe('Home', () => { it('renders without crashing', () => { const props = { onRequestLoading: jest.fn(), }; const wrapper = shallow(<Home {...props} />); expect(toJson(wrapper)).toMatchSnapshot(); }); });