2018-05-10 18:17:05 +02:00
|
|
|
import React from 'react'
|
|
|
|
import assert from 'assert'
|
|
|
|
import { shallow } from 'enzyme'
|
|
|
|
import SendFromRow from '../send-from-row.component.js'
|
2018-12-14 03:19:36 +01:00
|
|
|
import AccountListItem from '../../../account-list-item'
|
2018-05-10 18:17:05 +02:00
|
|
|
import SendRowWrapper from '../../send-row-wrapper/send-row-wrapper.component'
|
|
|
|
|
|
|
|
describe('SendFromRow Component', function () {
|
|
|
|
describe('render', () => {
|
2018-12-14 03:19:36 +01:00
|
|
|
const wrapper = shallow(
|
|
|
|
<SendFromRow
|
|
|
|
from={ { address: 'mockAddress' } }
|
|
|
|
/>,
|
|
|
|
{ context: { t: str => str + '_t' } }
|
|
|
|
)
|
|
|
|
|
2018-05-10 18:17:05 +02:00
|
|
|
it('should render a SendRowWrapper component', () => {
|
|
|
|
assert.equal(wrapper.find(SendRowWrapper).length, 1)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should pass the correct props to SendRowWrapper', () => {
|
2018-12-14 03:19:36 +01:00
|
|
|
const { label } = wrapper.find(SendRowWrapper).props()
|
2018-05-10 18:17:05 +02:00
|
|
|
assert.equal(label, 'from_t:')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should render the FromDropdown with the correct props', () => {
|
2018-12-14 03:19:36 +01:00
|
|
|
const { account } = wrapper.find(AccountListItem).props()
|
|
|
|
assert.deepEqual(account, { address: 'mockAddress' })
|
2018-05-10 18:17:05 +02:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|