A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
ciphermask/ui/pages/swaps/dropdown-search-list/dropdown-search-list.test.js

31 lines
779 B

import React from 'react';
import configureMockStore from 'redux-mock-store';
import {
renderWithProvider,
createSwapsMockStore,
} 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 store = configureMockStore()(createSwapsMockStore());
const props = createProps();
const { container, getByText } = renderWithProvider(
<DropdownSearchList {...props} />,
store,
);
expect(container).toMatchSnapshot();
expect(getByText('symbol')).toBeInTheDocument();
});
});