import React from 'react' import renderer from 'react-test-renderer' import Input from '.' describe('Input', () => { it ('Rendering Input without crashing', () => { const result = renderer.create( {}} /> ).toJSON() expect(result).toMatchSnapshot() }) })