aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send_/send-content/tests/send-content-component.test.js
diff options
context:
space:
mode:
authorDan J Miller <danjm.com@gmail.com>2018-06-07 11:20:16 +0800
committerGitHub <noreply@github.com>2018-06-07 11:20:16 +0800
commit988283778a2be52640b27a359ef3fb1130e95711 (patch)
treef62576fb7e1a9088cef9bb1137745192bd571539 /ui/app/components/send_/send-content/tests/send-content-component.test.js
parentc86213bf118c0d9d0356a36e6ca0e9e884a82d73 (diff)
parenta09d609360f5f916e75e98254fb82ce8f3f42d35 (diff)
downloadtangerine-wallet-browser-988283778a2be52640b27a359ef3fb1130e95711.tar.gz
tangerine-wallet-browser-988283778a2be52640b27a359ef3fb1130e95711.tar.zst
tangerine-wallet-browser-988283778a2be52640b27a359ef3fb1130e95711.zip
Merge pull request #4090 from MetaMask/i3725-refactor-send-component-
I3725 Refactor Send Component
Diffstat (limited to 'ui/app/components/send_/send-content/tests/send-content-component.test.js')
-rw-r--r--ui/app/components/send_/send-content/tests/send-content-component.test.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/ui/app/components/send_/send-content/tests/send-content-component.test.js b/ui/app/components/send_/send-content/tests/send-content-component.test.js
new file mode 100644
index 000000000..d5bb6693c
--- /dev/null
+++ b/ui/app/components/send_/send-content/tests/send-content-component.test.js
@@ -0,0 +1,38 @@
+import React from 'react'
+import assert from 'assert'
+import { shallow } from 'enzyme'
+import SendContent from '../send-content.component.js'
+
+import PageContainerContent from '../../../page-container/page-container-content.component'
+import SendAmountRow from '../send-amount-row/send-amount-row.container'
+import SendFromRow from '../send-from-row/send-from-row.container'
+import SendGasRow from '../send-gas-row/send-gas-row.container'
+import SendToRow from '../send-to-row/send-to-row.container'
+
+describe('SendContent Component', function () {
+ let wrapper
+
+ beforeEach(() => {
+ wrapper = shallow(<SendContent />)
+ })
+
+ describe('render', () => {
+ it('should render a PageContainerContent component', () => {
+ assert.equal(wrapper.find(PageContainerContent).length, 1)
+ })
+
+ it('should render a div with a .send-v2__form class as a child of PageContainerContent', () => {
+ const PageContainerContentChild = wrapper.find(PageContainerContent).children()
+ PageContainerContentChild.is('div')
+ PageContainerContentChild.is('.send-v2__form')
+ })
+
+ it('should render the correct row components as grandchildren of the PageContainerContent component', () => {
+ const PageContainerContentChild = wrapper.find(PageContainerContent).children()
+ assert(PageContainerContentChild.childAt(0).is(SendFromRow))
+ assert(PageContainerContentChild.childAt(1).is(SendToRow))
+ assert(PageContainerContentChild.childAt(2).is(SendAmountRow))
+ assert(PageContainerContentChild.childAt(3).is(SendGasRow))
+ })
+ })
+})