mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
46 lines
1.5 KiB
JavaScript
46 lines
1.5 KiB
JavaScript
import React from 'react'
|
|
import assert from 'assert'
|
|
import { shallow } from 'enzyme'
|
|
import UserPreferencedCurrencyDisplay from '../user-preferenced-currency-display.component'
|
|
import CurrencyDisplay from '../../../ui/currency-display'
|
|
import * as currencyHook from '../../../../hooks/useCurrencyDisplay'
|
|
import * as currencyPrefHook from '../../../../hooks/useUserPreferencedCurrency'
|
|
import sinon from 'sinon'
|
|
|
|
|
|
describe('UserPreferencedCurrencyDisplay Component', function () {
|
|
describe('rendering', function () {
|
|
beforeEach(function () {
|
|
sinon.stub(currencyHook, 'useCurrencyDisplay').returns(['1', {}])
|
|
sinon.stub(currencyPrefHook, 'useUserPreferencedCurrency').returns({ currency: 'ETH', decimals: 6 })
|
|
})
|
|
it('should render properly', function () {
|
|
const wrapper = shallow(
|
|
<UserPreferencedCurrencyDisplay />
|
|
)
|
|
|
|
assert.ok(wrapper)
|
|
assert.equal(wrapper.find(CurrencyDisplay).length, 1)
|
|
})
|
|
|
|
it('should pass all props to the CurrencyDisplay child component', function () {
|
|
const wrapper = shallow(
|
|
<UserPreferencedCurrencyDisplay
|
|
prop1
|
|
prop2="test"
|
|
prop3={1}
|
|
/>
|
|
)
|
|
|
|
assert.ok(wrapper)
|
|
assert.equal(wrapper.find(CurrencyDisplay).length, 1)
|
|
assert.equal(wrapper.find(CurrencyDisplay).props().prop1, true)
|
|
assert.equal(wrapper.find(CurrencyDisplay).props().prop2, 'test')
|
|
assert.equal(wrapper.find(CurrencyDisplay).props().prop3, 1)
|
|
})
|
|
afterEach(function () {
|
|
sinon.restore()
|
|
})
|
|
})
|
|
})
|