diff options
author | Dan Miller <danjm.com@gmail.com> | 2018-08-09 02:34:52 +0800 |
---|---|---|
committer | Dan Miller <danjm.com@gmail.com> | 2018-08-09 03:34:42 +0800 |
commit | e98c3b4c01b990678ac58f45448d0e2548396a2b (patch) | |
tree | c31879bd39038e85b0c4caed2018fca93aabc8db /test | |
parent | 1d4ee6bf765f0b7fc80fa7f95618e8de3844488d (diff) | |
download | tangerine-wallet-browser-e98c3b4c01b990678ac58f45448d0e2548396a2b.tar tangerine-wallet-browser-e98c3b4c01b990678ac58f45448d0e2548396a2b.tar.gz tangerine-wallet-browser-e98c3b4c01b990678ac58f45448d0e2548396a2b.tar.bz2 tangerine-wallet-browser-e98c3b4c01b990678ac58f45448d0e2548396a2b.tar.lz tangerine-wallet-browser-e98c3b4c01b990678ac58f45448d0e2548396a2b.tar.xz tangerine-wallet-browser-e98c3b4c01b990678ac58f45448d0e2548396a2b.tar.zst tangerine-wallet-browser-e98c3b4c01b990678ac58f45448d0e2548396a2b.zip |
Get nonce for showing retry button using ethQuery transaction count.
Diffstat (limited to 'test')
-rw-r--r-- | test/integration/lib/tx-list-items.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/integration/lib/tx-list-items.js b/test/integration/lib/tx-list-items.js index b7aca44d5..9075efe03 100644 --- a/test/integration/lib/tx-list-items.js +++ b/test/integration/lib/tx-list-items.js @@ -14,6 +14,11 @@ QUnit.test('renders list items successfully', (assert) => { }) }) +global.ethQuery = global.ethQuery || {} +global.ethQuery.getTransactionCount = (_, cb) => { + cb(null, '0x3') +} + async function runTxListItemsTest (assert, done) { console.log('*** start runTxListItemsTest') const selectState = await queryAsync($, 'select') |