Merge pull request #5206 from whymarrh/fix-send-content-tests

Fix assertion of missing child component
feature/default_network_editable
Whymarrh Whitby 6 years ago committed by GitHub
commit dc2431fe62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      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)
})
})
})

Loading…
Cancel
Save