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