import React from 'react'; import { shallow } from 'enzyme'; import InstallPrompt from 'components/InstallPrompt'; describe('InstallPrompt', () => { test('rendering', () => { const component = shallow( ); expect(component).toMatchSnapshot(); }); });