1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix assertion of missing child component

This commit is contained in:
Whymarrh Whitby 2018-09-05 16:35:37 -02:30
parent bd49098039
commit 05c72070bb

View File

@ -44,7 +44,7 @@ describe('SendContent Component', function () {
assert(PageContainerContentChild.childAt(1).is(SendToRow)) assert(PageContainerContentChild.childAt(1).is(SendToRow))
assert(PageContainerContentChild.childAt(2).is(SendAmountRow)) assert(PageContainerContentChild.childAt(2).is(SendAmountRow))
assert(PageContainerContentChild.childAt(3).is(SendGasRow)) assert(PageContainerContentChild.childAt(3).is(SendGasRow))
assert.equal(PageContainerContentChild.childAt(4).html(), null) assert.equal(PageContainerContentChild.childAt(4).exists(), false)
}) })
}) })
}) })