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.
61 lines
1.6 KiB
61 lines
1.6 KiB
4 years ago
|
import React from 'react';
|
||
|
|
||
4 years ago
|
import { renderWithProvider } from '../../../../test/jest';
|
||
4 years ago
|
import SearchableItemList from '.';
|
||
|
|
||
|
const createProps = (customProps = {}) => {
|
||
|
return {
|
||
|
defaultToAll: true,
|
||
|
listTitle: 'listTitle',
|
||
|
itemsToSearch: [
|
||
|
{
|
||
|
iconUrl: 'iconUrl',
|
||
|
selected: true,
|
||
|
primaryLabel: 'primaryLabel',
|
||
|
secondaryLabel: 'secondaryLabel',
|
||
|
rightPrimaryLabel: 'rightPrimaryLabel',
|
||
|
rightSecondaryLabel: 'rightSecondaryLabel',
|
||
|
},
|
||
|
],
|
||
|
fuseSearchKeys: [
|
||
|
{
|
||
|
name: 'name',
|
||
|
weight: 0.499,
|
||
|
},
|
||
|
{
|
||
|
name: 'symbol',
|
||
|
weight: 0.499,
|
||
|
},
|
||
|
{
|
||
|
name: 'address',
|
||
|
weight: 0.002,
|
||
|
},
|
||
|
],
|
||
|
...customProps,
|
||
|
};
|
||
|
};
|
||
|
|
||
|
describe('SearchableItemList', () => {
|
||
|
it('renders the component with initial props', () => {
|
||
|
const props = createProps();
|
||
|
const { getByText } = renderWithProvider(<SearchableItemList {...props} />);
|
||
|
expect(getByText(props.listTitle)).toBeInTheDocument();
|
||
|
expect(getByText(props.itemsToSearch[0].primaryLabel)).toBeInTheDocument();
|
||
|
expect(
|
||
|
getByText(props.itemsToSearch[0].secondaryLabel),
|
||
|
).toBeInTheDocument();
|
||
|
expect(
|
||
|
getByText(props.itemsToSearch[0].rightPrimaryLabel),
|
||
|
).toBeInTheDocument();
|
||
|
expect(
|
||
|
getByText(props.itemsToSearch[0].rightSecondaryLabel),
|
||
|
).toBeInTheDocument();
|
||
|
expect(
|
||
|
document.querySelector('.searchable-item-list__search'),
|
||
|
).toMatchSnapshot();
|
||
|
expect(
|
||
|
document.querySelector('.searchable-item-list__item'),
|
||
|
).toMatchSnapshot();
|
||
|
});
|
||
|
});
|