diff options
author | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2018-09-06 03:05:37 +0800 |
---|---|---|
committer | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2018-09-06 03:05:37 +0800 |
commit | 05c72070bb92e0b482d88921313990ce507fa682 (patch) | |
tree | fb1565d381c197a98f5f6aee10c3071cb67b1f13 | |
parent | bd49098039a6e533a5ba9c2ffda285d43ea845df (diff) | |
download | tangerine-wallet-browser-05c72070bb92e0b482d88921313990ce507fa682.tar tangerine-wallet-browser-05c72070bb92e0b482d88921313990ce507fa682.tar.gz tangerine-wallet-browser-05c72070bb92e0b482d88921313990ce507fa682.tar.bz2 tangerine-wallet-browser-05c72070bb92e0b482d88921313990ce507fa682.tar.lz tangerine-wallet-browser-05c72070bb92e0b482d88921313990ce507fa682.tar.xz tangerine-wallet-browser-05c72070bb92e0b482d88921313990ce507fa682.tar.zst tangerine-wallet-browser-05c72070bb92e0b482d88921313990ce507fa682.zip |
Fix assertion of missing child component
-rw-r--r-- | ui/app/components/send/send-content/tests/send-content-component.test.js | 2 |
1 files changed, 1 insertions, 1 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 index 7c3a2cc2d..c5a11c8bb 100644 --- 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 @@ -44,7 +44,7 @@ describe('SendContent Component', function () { assert(PageContainerContentChild.childAt(1).is(SendToRow)) assert(PageContainerContentChild.childAt(2).is(SendAmountRow)) assert(PageContainerContentChild.childAt(3).is(SendGasRow)) - assert.equal(PageContainerContentChild.childAt(4).html(), null) + assert.equal(PageContainerContentChild.childAt(4).exists(), false) }) }) }) |