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