mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 22:24:27 +01:00
26 lines
624 B
JavaScript
26 lines
624 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();
|
|
});
|
|
});
|