UNPKG

create-personal-react-app

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