import React from 'react'; import { renderWithProvider } from '../../../../../test/jest'; import DropdownSearchList from '.'; const createProps = (customProps = {}) => { return { startingItem: { iconUrl: 'iconUrl', symbol: 'symbol', }, ...customProps, }; }; describe('DropdownSearchList', () => { it('renders the component with initial props', () => { const props = createProps(); const { container, getByText } = renderWithProvider( , ); expect(container).toMatchSnapshot(); expect(getByText('symbol')).toBeInTheDocument(); }); });