import React from 'react';
import enzyme, { shallow } from 'enzyme';
import Adapter from 'enzyme-adapter-react-16';

import Section from './Section';

enzyme.configure({ adapter: new Adapter() });


describe('<Section />', () => {
  it('should render Section', () => {
    const wrapper = shallow(
      <Section />
    );

    expect(wrapper).toMatchSnapshot();
  });
});
