import React from 'react'
import { render } from '@testing-library/react'
import SearchInput from '../SearchInput'
describe('<SearchInput />', () => {
it('should match snapshot', () => {
const { container } = render(<SearchInput />)
expect(container).toMatchSnapshot()
})
})