aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send/send-content/send-amount-row/amount-max-button/tests/amount-max-button-component.test.js
diff options
context:
space:
mode:
authorWhymarrh Whitby <whymarrh.whitby@gmail.com>2018-10-16 07:26:24 +0800
committerWhymarrh Whitby <whymarrh.whitby@gmail.com>2018-10-16 07:34:07 +0800
commitbdb6e55354ad01fbf0741d0adb99cab8082f6da2 (patch)
tree5bdf81ad6acc2a1f7f8d5d146f8ee301cf87701e /ui/app/components/send/send-content/send-amount-row/amount-max-button/tests/amount-max-button-component.test.js
parent8c33c018dead721d7ad3b86d75a8a7abcade3938 (diff)
downloadtangerine-wallet-browser-bdb6e55354ad01fbf0741d0adb99cab8082f6da2.tar.gz
tangerine-wallet-browser-bdb6e55354ad01fbf0741d0adb99cab8082f6da2.tar.zst
tangerine-wallet-browser-bdb6e55354ad01fbf0741d0adb99cab8082f6da2.zip
Decrease click area for AmountMaxButton on send screen
Diffstat (limited to 'ui/app/components/send/send-content/send-amount-row/amount-max-button/tests/amount-max-button-component.test.js')
-rw-r--r--ui/app/components/send/send-content/send-amount-row/amount-max-button/tests/amount-max-button-component.test.js9
1 files changed, 4 insertions, 5 deletions
diff --git a/ui/app/components/send/send-content/send-amount-row/amount-max-button/tests/amount-max-button-component.test.js b/ui/app/components/send/send-content/send-amount-row/amount-max-button/tests/amount-max-button-component.test.js
index 86a05ff21..b04d3897f 100644
--- a/ui/app/components/send/send-content/send-amount-row/amount-max-button/tests/amount-max-button-component.test.js
+++ b/ui/app/components/send/send-content/send-amount-row/amount-max-button/tests/amount-max-button-component.test.js
@@ -56,9 +56,8 @@ describe('AmountMaxButton Component', function () {
})
describe('render', () => {
- it('should render a div with a send-v2__amount-max class', () => {
- assert.equal(wrapper.find('.send-v2__amount-max').length, 1)
- assert(wrapper.find('.send-v2__amount-max').is('div'))
+ it('should render an element with a send-v2__amount-max class', () => {
+ assert(wrapper.exists('.send-v2__amount-max'))
})
it('should call setMaxModeTo and setMaxAmount when the send-v2__amount-max div is clicked', () => {
@@ -77,9 +76,9 @@ describe('AmountMaxButton Component', function () {
)
})
- it('should not render text when maxModeOn is true', () => {
+ it('should not render anything when maxModeOn is true', () => {
wrapper.setProps({ maxModeOn: true })
- assert.equal(wrapper.find('.send-v2__amount-max').text(), '')
+ assert.ok(!wrapper.exists('.send-v2__amount-max'))
})
it('should render the expected text when maxModeOn is false', () => {