aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@users.noreply.github.com>2018-07-18 01:41:32 +0800
committerGitHub <noreply@github.com>2018-07-18 01:41:32 +0800
commit89911dda170e33d8d9ca2f29f2705ed446d4c0f2 (patch)
treed1ce281ab99e86123543b1c5ce8b4f3a8099e067 /test
parent9a098a28e08d97a8cd94086ddd59bb19ccbcef54 (diff)
parent4737ea49c72b24a712b7c3215bed93383ce3ad81 (diff)
downloadtangerine-wallet-browser-89911dda170e33d8d9ca2f29f2705ed446d4c0f2.tar
tangerine-wallet-browser-89911dda170e33d8d9ca2f29f2705ed446d4c0f2.tar.gz
tangerine-wallet-browser-89911dda170e33d8d9ca2f29f2705ed446d4c0f2.tar.bz2
tangerine-wallet-browser-89911dda170e33d8d9ca2f29f2705ed446d4c0f2.tar.lz
tangerine-wallet-browser-89911dda170e33d8d9ca2f29f2705ed446d4c0f2.tar.xz
tangerine-wallet-browser-89911dda170e33d8d9ca2f29f2705ed446d4c0f2.tar.zst
tangerine-wallet-browser-89911dda170e33d8d9ca2f29f2705ed446d4c0f2.zip
Merge pull request #4815 from MetaMask/i4783-retry
Increase clickable area and padding of Retry Transaction bar
Diffstat (limited to 'test')
-rw-r--r--test/integration/lib/tx-list-items.js4
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')