aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send_/send-footer
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-05-25 09:00:07 +0800
committerDan <danjm.com@gmail.com>2018-05-25 10:30:55 +0800
commit0de765aa25637cd85e22eebd11b6c4c8a32faf14 (patch)
tree93f96c9b3cc59c32c22a9c5b9866186cd2bf6da5 /ui/app/components/send_/send-footer
parentdc2b5d0ef47be2125e58018470539d65d0d64c75 (diff)
downloadtangerine-wallet-browser-0de765aa25637cd85e22eebd11b6c4c8a32faf14.tar.gz
tangerine-wallet-browser-0de765aa25637cd85e22eebd11b6c4c8a32faf14.tar.zst
tangerine-wallet-browser-0de765aa25637cd85e22eebd11b6c4c8a32faf14.zip
Clean up for send refactor PR.
Diffstat (limited to 'ui/app/components/send_/send-footer')
-rw-r--r--ui/app/components/send_/send-footer/tests/send-footer-container.test.js14
1 files changed, 2 insertions, 12 deletions
diff --git a/ui/app/components/send_/send-footer/tests/send-footer-container.test.js b/ui/app/components/send_/send-footer/tests/send-footer-container.test.js
index e9d4eb04d..9a616777e 100644
--- a/ui/app/components/send_/send-footer/tests/send-footer-container.test.js
+++ b/ui/app/components/send_/send-footer/tests/send-footer-container.test.js
@@ -16,7 +16,6 @@ const utilsStubs = {
addressIsNew: sinon.stub().returns(true),
constructTxParams: sinon.stub().returns('mockConstructedTxParams'),
constructUpdatedTx: sinon.stub().returns('mockConstructedUpdatedTxParams'),
- formShouldBeDisabled: sinon.stub().returns('mockFormShouldBeDisabled'),
}
proxyquire('../send-footer.container.js', {
@@ -53,27 +52,18 @@ describe('send-footer container', () => {
it('should map the correct properties to props', () => {
assert.deepEqual(mapStateToProps('mockState'), {
amount: 'mockAmount:mockState',
- disabled: 'mockFormShouldBeDisabled',
selectedToken: 'mockSelectedToken:mockState',
editingTransactionId: 'mockEditingTransactionId:mockState',
from: 'mockFromObject:mockState',
gasLimit: 'mockGasLimit:mockState',
gasPrice: 'mockGasPrice:mockState',
+ gasTotal: 'mockGasTotal:mockState',
inError: 'mockInError:mockState',
- isToken: true,
to: 'mockTo:mockState',
toAccounts: 'mockToAccounts:mockState',
+ tokenBalance: 'mockTokenBalance:mockState',
unapprovedTxs: 'mockUnapprovedTxs:mockState',
})
- assert.deepEqual(
- utilsStubs.formShouldBeDisabled.getCall(0).args[0],
- {
- inError: 'mockInError:mockState',
- selectedToken: 'mockSelectedToken:mockState',
- tokenBalance: 'mockTokenBalance:mockState',
- gasTotal: 'mockGasTotal:mockState',
- }
- )
})
})