import { shallow } from 'enzyme';
import { shallowToJson } from 'enzyme-to-json';
import React from 'react';
import { spy } from 'sinon';
import {{ properCase name }} from '../index';

describe('<{{ properCase name }} />', () => {
  it('should render with default props', () => {
    const wrapper = shallow(
      <{{ properCase name }} />
    );
    expect(shallowToJson(wrapper)).toMatchSnapshot();
  });
});
