mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 07:16:36 +01:00
e65b955b19
* Unit tests for Hide Token Confirmation modal * Unit test for Export Private Key modal * Unit test for Customize Nonce modal * Bump coverage targets --------- Co-authored-by: Brad Decker <bhdecker84@gmail.com>
85 lines
2.2 KiB
JavaScript
85 lines
2.2 KiB
JavaScript
import React from 'react';
|
|
import configureMockStore from 'redux-mock-store';
|
|
import { fireEvent } from '@testing-library/react';
|
|
import thunk from 'redux-thunk';
|
|
import * as actions from '../../../../store/actions';
|
|
import { renderWithProvider } from '../../../../../test/lib/render-helpers';
|
|
import mockState from '../../../../../test/data/mock-state.json';
|
|
import HideTokenConfirmationModal from '.';
|
|
|
|
const mockHistoryPush = jest.fn();
|
|
const mockHideModal = jest.fn();
|
|
const mockHideToken = jest.fn().mockResolvedValue();
|
|
|
|
jest.mock('../../../../store/actions.ts', () => ({
|
|
...jest.requireActual('../../../../store/actions.ts'),
|
|
hideModal: () => mockHideModal,
|
|
hideToken: () => mockHideToken,
|
|
ignoreTokens: jest.fn().mockReturnValue(jest.fn().mockResolvedValue()),
|
|
}));
|
|
|
|
describe('Hide Token Confirmation Modal', () => {
|
|
const tokenState = {
|
|
address: '0xTokenAddress',
|
|
symbol: 'TKN',
|
|
image: '',
|
|
};
|
|
|
|
const tokenModalState = {
|
|
...mockState,
|
|
appState: {
|
|
...mockState.appState,
|
|
modal: {
|
|
modalState: {
|
|
props: {
|
|
history: {
|
|
push: mockHistoryPush,
|
|
},
|
|
token: tokenState,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
const mockStore = configureMockStore([thunk])(tokenModalState);
|
|
|
|
it('should match snapshot', () => {
|
|
const { container } = renderWithProvider(
|
|
<HideTokenConfirmationModal />,
|
|
mockStore,
|
|
);
|
|
|
|
expect(container).toMatchSnapshot();
|
|
});
|
|
|
|
it('should hide modal', () => {
|
|
const { queryByTestId } = renderWithProvider(
|
|
<HideTokenConfirmationModal />,
|
|
mockStore,
|
|
);
|
|
|
|
const cancelButton = queryByTestId('hide-token-confirmation__cancel');
|
|
|
|
fireEvent.click(cancelButton);
|
|
|
|
expect(mockHideModal).toHaveBeenCalled();
|
|
});
|
|
|
|
it('should hide token with token address from state', () => {
|
|
const { queryByTestId } = renderWithProvider(
|
|
<HideTokenConfirmationModal />,
|
|
mockStore,
|
|
);
|
|
|
|
const hideButton = queryByTestId('hide-token-confirmation__hide');
|
|
|
|
fireEvent.click(hideButton);
|
|
|
|
expect(mockHideModal).toHaveBeenCalled();
|
|
expect(actions.ignoreTokens).toHaveBeenCalledWith({
|
|
tokensToIgnore: tokenState.address,
|
|
});
|
|
});
|
|
});
|