diff options
author | Dan <danjm.com@gmail.com> | 2018-06-19 01:50:16 +0800 |
---|---|---|
committer | Dan <danjm.com@gmail.com> | 2018-06-19 01:50:16 +0800 |
commit | 0c8318b02a5ccb11f5de43a8c9894873e29c2401 (patch) | |
tree | e33ee80ef8d21e819db480327c9fd504f418d329 /test | |
parent | ac7c0277b503c7660d6894a9039d35c8713f52ab (diff) | |
download | tangerine-wallet-browser-0c8318b02a5ccb11f5de43a8c9894873e29c2401.tar.gz tangerine-wallet-browser-0c8318b02a5ccb11f5de43a8c9894873e29c2401.tar.zst tangerine-wallet-browser-0c8318b02a5ccb11f5de43a8c9894873e29c2401.zip |
Update integration tests for newui gas estimation fixes.
Diffstat (limited to 'test')
-rw-r--r-- | test/integration/lib/send-new-ui.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/lib/send-new-ui.js b/test/integration/lib/send-new-ui.js index 4d2ea2ea4..72e4a8cb1 100644 --- a/test/integration/lib/send-new-ui.js +++ b/test/integration/lib/send-new-ui.js @@ -117,12 +117,12 @@ async function runSendFlowTest(assert, done) { const sendGasField = await queryAsync($, '.send-v2__gas-fee-display') assert.equal( sendGasField.find('.currency-display__input-wrapper > input').val(), - '0.000198264', + '0.000021', 'send gas field should show estimated gas total' ) assert.equal( sendGasField.find('.currency-display__converted-value')[0].textContent, - '$0.24 USD', + '$0.03 USD', 'send gas field should show estimated gas total converted to USD' ) |