A Metamask fork with Infura removed and default networks editable
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.
 
 
 
 
 
ciphermask/ui/app/pages/send/send-content/send-from-row/tests/send-from-row-component.tes...

31 lines
1019 B

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