diff options
author | Dan Miller <danjm.com@gmail.com> | 2018-11-07 02:18:52 +0800 |
---|---|---|
committer | Dan Miller <danjm.com@gmail.com> | 2018-12-04 11:36:22 +0800 |
commit | 8c8359ca14efdbff2dd879f81090647036799607 (patch) | |
tree | 7d660c09e747e5f969b46e43d1bfb4637ffcea6a /test/integration | |
parent | b70886a99b466366e84d24271adbb890aebf6460 (diff) | |
download | tangerine-wallet-browser-8c8359ca14efdbff2dd879f81090647036799607.tar tangerine-wallet-browser-8c8359ca14efdbff2dd879f81090647036799607.tar.gz tangerine-wallet-browser-8c8359ca14efdbff2dd879f81090647036799607.tar.bz2 tangerine-wallet-browser-8c8359ca14efdbff2dd879f81090647036799607.tar.lz tangerine-wallet-browser-8c8359ca14efdbff2dd879f81090647036799607.tar.xz tangerine-wallet-browser-8c8359ca14efdbff2dd879f81090647036799607.tar.zst tangerine-wallet-browser-8c8359ca14efdbff2dd879f81090647036799607.zip |
Remove gas customization integration tests (in favour of e2e tests)
Diffstat (limited to 'test/integration')
-rw-r--r-- | test/integration/lib/send-new-ui.js | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/test/integration/lib/send-new-ui.js b/test/integration/lib/send-new-ui.js index 271dd91cf..98e5f549b 100644 --- a/test/integration/lib/send-new-ui.js +++ b/test/integration/lib/send-new-ui.js @@ -21,37 +21,6 @@ global.ethQuery = { global.ethereumProvider = {} -async function customizeGas (assert, price, limit, ethFee, usdFee) { - const sendGasOpenCustomizeModalButton = await queryAsync($, '.sliders-icon-container') - sendGasOpenCustomizeModalButton[0].click() - - const customizeGasModal = await queryAsync($, '.send-v2__customize-gas') - assert.ok(customizeGasModal[0], 'should render the customize gas modal') - - const customizeGasPriceInput = (await queryAsync($, '.send-v2__gas-modal-card')).first().find('input') - customizeGasPriceInput.val(price) - reactTriggerChange(customizeGasPriceInput[0]) - const customizeGasLimitInput = (await queryAsync($, '.send-v2__gas-modal-card')).last().find('input') - customizeGasLimitInput.val(limit) - reactTriggerChange(customizeGasLimitInput[0]) - - const customizeGasSaveButton = await queryAsync($, '.send-v2__customize-gas__save') - customizeGasSaveButton[0].click() - const sendGasField = await queryAsync($, '.send-v2__gas-fee-display') - - assert.equal( - (await findAsync(sendGasField, '.currency-display-component'))[0].textContent, - ethFee, - 'send gas field should show customized gas total' - ) - - assert.equal( - (await findAsync(sendGasField, '.currency-display__converted-value'))[0].textContent, - usdFee, - 'send gas field should show customized gas total converted to USD' - ) -} - async function runSendFlowTest (assert, done) { console.log('*** start runSendFlowTest') const selectState = await queryAsync($, 'select') @@ -112,10 +81,6 @@ async function runSendFlowTest (assert, done) { errorMessage = $('.send-v2__error') assert.equal(errorMessage.length, 0, 'send should stop rendering amount error message after amount is corrected') - await customizeGas(assert, 0, 21000, '0ETH', '$0.00USD') - await customizeGas(assert, 1, 21000, '0.000021ETH', '$0.03USD') - await customizeGas(assert, 500, 60000, '0.03ETH', '$36.03USD') - const sendButton = await queryAsync($, 'button.btn-primary.btn--large.page-container__footer-button') assert.equal(sendButton[0].textContent, 'Next', 'next button rendered') sendButton[0].click() |