Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
yann300 committed Jun 15, 2017
1 parent 582e5be commit cd1d564
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test-browser/tests/compiling.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ function runTests (browser) {
.click('.instance .call[title="f"]')
.waitForElementPresent('.output .returned')
.assert.containsText('.output .returned', '0x0000000000000000000000000000000000000000000000000000000000000008')
.assert.containsText('.output .decoded li', 'uint256: 8')
.end()
.execute(function () {
document.querySelector('.output .decoded li').scrollIntoView()
}, [], function () {
browser.assert.containsText('.output .decoded li', 'uint256: 8')
.end()
})
})
}

0 comments on commit cd1d564

Please sign in to comment.