mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
28 lines
1.1 KiB
JavaScript
28 lines
1.1 KiB
JavaScript
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
import CurrencyInput from '../../ui/currency-input';
|
|
import UserPreferencedCurrencyInput from './user-preferenced-currency-input.component';
|
|
|
|
describe('UserPreferencedCurrencyInput Component', () => {
|
|
describe('rendering', () => {
|
|
it('should render properly', () => {
|
|
const wrapper = shallow(<UserPreferencedCurrencyInput />);
|
|
|
|
expect(wrapper).toHaveLength(1);
|
|
expect(wrapper.find(CurrencyInput)).toHaveLength(1);
|
|
});
|
|
|
|
it('should render useFiat for CurrencyInput based on preferences.useNativeCurrencyAsPrimaryCurrency', () => {
|
|
const wrapper = shallow(
|
|
<UserPreferencedCurrencyInput useNativeCurrencyAsPrimaryCurrency />,
|
|
);
|
|
|
|
expect(wrapper).toHaveLength(1);
|
|
expect(wrapper.find(CurrencyInput)).toHaveLength(1);
|
|
expect(wrapper.find(CurrencyInput).props().useFiat).toStrictEqual(false);
|
|
wrapper.setProps({ useNativeCurrencyAsPrimaryCurrency: false });
|
|
expect(wrapper.find(CurrencyInput).props().useFiat).toStrictEqual(true);
|
|
});
|
|
});
|
|
});
|