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.
32 lines
921 B
32 lines
921 B
import React from 'react'
|
|
import { configure, shallow } from 'enzyme'
|
|
import Adapter from 'enzyme-adapter-react-16'
|
|
import FaDollar from 'react-icons/lib/fa/dollar'
|
|
import CryptoIcon from 'components/CryptoIcon'
|
|
import CurrencyIcon from 'components/CurrencyIcon'
|
|
|
|
configure({ adapter: new Adapter() })
|
|
|
|
const defaultProps = {
|
|
currency: '',
|
|
crypto: '',
|
|
styles: {}
|
|
}
|
|
|
|
describe('component.CurrencyIcon', () => {
|
|
describe('currency is "usd"', () => {
|
|
const props = { ...defaultProps, currency: 'usd' }
|
|
const el = shallow(<CurrencyIcon {...props} />)
|
|
it('should show usd symbol', () => {
|
|
expect(el.find(FaDollar)).toHaveLength(1)
|
|
})
|
|
})
|
|
|
|
describe('currency is not "usd"', () => {
|
|
const props = { ...defaultProps, currency: 'btc' }
|
|
const el = shallow(<CurrencyIcon {...props} />)
|
|
it('should show btc symbol', () => {
|
|
expect(el.find(CryptoIcon)).toHaveLength(1)
|
|
})
|
|
})
|
|
})
|
|
|