diff options
author | Alexander Tseung <alextsg@gmail.com> | 2018-07-17 08:09:57 +0800 |
---|---|---|
committer | Alexander Tseung <alextsg@gmail.com> | 2018-07-17 12:45:24 +0800 |
commit | 4737ea49c72b24a712b7c3215bed93383ce3ad81 (patch) | |
tree | e961e046b8b886e909b65c9edc5fd0654b56650d /test/integration | |
parent | db4469794e3e843f3cb08222d0a9b568c7816a85 (diff) | |
download | tangerine-wallet-browser-4737ea49c72b24a712b7c3215bed93383ce3ad81.tar tangerine-wallet-browser-4737ea49c72b24a712b7c3215bed93383ce3ad81.tar.gz tangerine-wallet-browser-4737ea49c72b24a712b7c3215bed93383ce3ad81.tar.bz2 tangerine-wallet-browser-4737ea49c72b24a712b7c3215bed93383ce3ad81.tar.lz tangerine-wallet-browser-4737ea49c72b24a712b7c3215bed93383ce3ad81.tar.xz tangerine-wallet-browser-4737ea49c72b24a712b7c3215bed93383ce3ad81.tar.zst tangerine-wallet-browser-4737ea49c72b24a712b7c3215bed93383ce3ad81.zip |
Increase clickable area and padding of Retry Transaction bar
Diffstat (limited to 'test/integration')
-rw-r--r-- | test/integration/lib/tx-list-items.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/lib/tx-list-items.js b/test/integration/lib/tx-list-items.js index 6b67b1d2e..b7aca44d5 100644 --- a/test/integration/lib/tx-list-items.js +++ b/test/integration/lib/tx-list-items.js @@ -31,8 +31,8 @@ async function runTxListItemsTest (assert, done) { assert.equal($(unapprovedTx).hasClass('tx-list-pending-item-container'), true, 'unapprovedTx has the correct class') const retryTx = txListItems[1] - const retryTxLink = await findAsync($(retryTx), '.tx-list-item-retry-link') - assert.equal(retryTxLink[0].textContent, 'Increase the gas price on your transaction', 'retryTx has expected link') + const retryTxLink = await findAsync($(retryTx), '.tx-list-item-retry-container span') + assert.equal(retryTxLink[0].textContent, 'Taking too long? Increase the gas price on your transaction', 'retryTx has expected link') const approvedTx = txListItems[2] const approvedTxRenderedStatus = await findAsync($(approvedTx), '.tx-list-status') |