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