import React from 'react'; import { render } from '@testing-library/react'; import renderer from 'react-test-renderer'; import Item from '../../../components/search/Item'; test('📸 of Input component with empty', () => { const fixture = { name: 'qw', title: '12', organization: null, __typename: 'Package', }; const tree = renderer.create().toJSON(); expect(tree).toMatchSnapshot(); });