import {{ properCase name }} from '{{ releativeTestToComponentPath }}';
import { shallow } from 'enzyme';
import { shallowToJson } from 'enzyme-to-json';
import React from 'react';

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