mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
4b2c777862
Co-authored-by: georgewrmarshall <george.marshall@consensys.net>
31 lines
861 B
JavaScript
31 lines
861 B
JavaScript
import React from 'react';
|
|
|
|
import { renderWithProvider } from '../../../../test/jest';
|
|
import ImportToken from '.';
|
|
|
|
const createProps = (customProps = {}) => {
|
|
return {
|
|
onImportTokenCloseClick: jest.fn(),
|
|
onImportTokenClick: jest.fn(),
|
|
setIsImportTokenModalOpen: jest.fn(),
|
|
tokenForImport: {
|
|
symbol: 'POS',
|
|
name: 'PoSToken',
|
|
address: '0xee609fe292128cad03b786dbb9bc2634ccdbe7fc',
|
|
},
|
|
isOpen: true,
|
|
...customProps,
|
|
};
|
|
};
|
|
|
|
describe('ImportToken', () => {
|
|
it('renders the component with initial props', () => {
|
|
const props = createProps();
|
|
const { getByText, getByDisplayValue } = renderWithProvider(
|
|
<ImportToken {...props} />,
|
|
);
|
|
expect(getByText(props.tokenForImport.name)).toBeInTheDocument();
|
|
expect(getByDisplayValue(props.tokenForImport.address)).toBeInTheDocument();
|
|
});
|
|
});
|