mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-04 07:05:14 +01:00
26 lines
627 B
JavaScript
26 lines
627 B
JavaScript
|
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(
|
||
|
<DropdownSearchList {...props} />,
|
||
|
);
|
||
|
expect(container).toMatchSnapshot();
|
||
|
expect(getByText('symbol')).toBeInTheDocument();
|
||
|
});
|
||
|
});
|