A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
ciphermask/ui/components/app/user-preferenced-currency-i.../user-preferenced-currency-i...

20 lines
631 B

import React from 'react';
import configureMockStore from 'redux-mock-store';
import { renderWithProvider } from '../../../../test/lib/render-helpers';
import mockState from '../../../../test/data/mock-state.json';
import UserPreferencedCurrencyInput from '.';
describe('UserPreferencedCurrencyInput Component', () => {
describe('rendering', () => {
it('should match snapshot', () => {
const mockStore = configureMockStore()(mockState);
const { container } = renderWithProvider(
<UserPreferencedCurrencyInput />,
mockStore,
);
expect(container).toMatchSnapshot();
});
});
});