mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
46b2290822
* Fix #20006 - Add Address Details and View on Explorer to Global Menu * Fix tests
39 lines
1.0 KiB
JavaScript
39 lines
1.0 KiB
JavaScript
/* eslint-disable jest/require-top-level-describe */
|
|
import React from 'react';
|
|
import { renderWithProvider } from '../../../../test/jest';
|
|
import configureStore from '../../../store/store';
|
|
import mockState from '../../../../test/data/mock-state.json';
|
|
import { AccountListItemMenu } from '.';
|
|
|
|
const identity = {
|
|
...mockState.metamask.identities[
|
|
'0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc'
|
|
],
|
|
balance: '0x152387ad22c3f0',
|
|
};
|
|
|
|
const DEFAULT_PROPS = {
|
|
identity,
|
|
onClose: jest.fn(),
|
|
onHide: jest.fn(),
|
|
isRemovable: false,
|
|
isOpen: true,
|
|
};
|
|
|
|
const render = (props = {}) => {
|
|
const store = configureStore({
|
|
metamask: {
|
|
...mockState.metamask,
|
|
},
|
|
});
|
|
const allProps = { ...DEFAULT_PROPS, ...props };
|
|
return renderWithProvider(<AccountListItemMenu {...allProps} />, store);
|
|
};
|
|
|
|
describe('AccountListItem', () => {
|
|
it('renders remove icon with isRemovable', () => {
|
|
const { getByTestId } = render({ isRemovable: true });
|
|
expect(getByTestId('account-list-menu-remove')).toBeInTheDocument();
|
|
});
|
|
});
|