mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 11:28:51 +01:00
27 lines
749 B
JavaScript
27 lines
749 B
JavaScript
|
import React from 'react';
|
||
|
import configureMockStore from 'redux-mock-store';
|
||
|
import mockState from '../../../../test/data/mock-state.json';
|
||
|
import { renderWithProvider } from '../../../../test/lib/render-helpers';
|
||
|
import UserPreferencedTokenInput from '.';
|
||
|
|
||
|
describe('UserPreferencedCurrencyInput Component', () => {
|
||
|
describe('rendering', () => {
|
||
|
const mockStore = configureMockStore()(mockState);
|
||
|
|
||
|
const props = {
|
||
|
token: {
|
||
|
address: '0xd8f6a2ffb0fc5952d16c9768b71cfd35b6399aa5',
|
||
|
},
|
||
|
};
|
||
|
|
||
|
it('should match snapshot', () => {
|
||
|
const { container } = renderWithProvider(
|
||
|
<UserPreferencedTokenInput {...props} />,
|
||
|
mockStore,
|
||
|
);
|
||
|
|
||
|
expect(container).toMatchSnapshot();
|
||
|
});
|
||
|
});
|
||
|
});
|