mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
58 lines
1.5 KiB
JavaScript
58 lines
1.5 KiB
JavaScript
import React from 'react';
|
|
import configureMockStore from 'redux-mock-store';
|
|
|
|
import { fireEvent } from '@testing-library/react';
|
|
import { renderWithProvider } from '../../../../test/lib/render-helpers';
|
|
import { TokenListItem } from '.';
|
|
|
|
const state = {
|
|
metamask: {
|
|
providerConfig: {
|
|
ticker: 'ETH',
|
|
nickname: '',
|
|
chainId: '0x1',
|
|
type: 'mainnet',
|
|
},
|
|
useTokenDetection: false,
|
|
nativeCurrency: 'ETH',
|
|
},
|
|
};
|
|
|
|
describe('TokenListItem', () => {
|
|
const props = {
|
|
onClick: jest.fn(),
|
|
};
|
|
it('should render correctly', () => {
|
|
const store = configureMockStore()(state);
|
|
const { getByTestId, container } = renderWithProvider(
|
|
<TokenListItem />,
|
|
store,
|
|
);
|
|
expect(getByTestId('multichain-token-list-item')).toBeDefined();
|
|
expect(container).toMatchSnapshot();
|
|
});
|
|
|
|
it('should render with custom className', () => {
|
|
const store = configureMockStore()(state);
|
|
const { getByTestId } = renderWithProvider(
|
|
<TokenListItem className="multichain-token-list-item-test" />,
|
|
store,
|
|
);
|
|
expect(getByTestId('multichain-token-list-item')).toHaveClass(
|
|
'multichain-token-list-item-test',
|
|
);
|
|
});
|
|
|
|
it('handles click action and fires onClick', () => {
|
|
const store = configureMockStore()(state);
|
|
const { queryByTestId } = renderWithProvider(
|
|
<TokenListItem {...props} />,
|
|
store,
|
|
);
|
|
|
|
fireEvent.click(queryByTestId('multichain-token-list-button'));
|
|
|
|
expect(props.onClick).toHaveBeenCalled();
|
|
});
|
|
});
|