import React from 'react'; import { shallow } from 'enzyme'; import Author from './Author'; describe(' component', () => { test('should render the component in default state', () => { const wrapper = shallow(); expect(wrapper.html()).toMatchSnapshot(); }); });