aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/unit/pending-balance-test.js15
1 files changed, 8 insertions, 7 deletions
diff --git a/test/unit/pending-balance-test.js b/test/unit/pending-balance-test.js
index 845d6d552..dcf1926f0 100644
--- a/test/unit/pending-balance-test.js
+++ b/test/unit/pending-balance-test.js
@@ -8,21 +8,22 @@ describe('PendingBalanceCalculator', function () {
let nonceTracker
describe('if you have no pending txs and one ether', function () {
- const ether = '0x' + (new BN(1e18)).toString(16)
+ const ether = '0x' + (new BN(String(1e18))).toString(16)
beforeEach(function () {
- nonceTracker = generateNonceTrackerWith([], ether)
+ nonceTracker = generateBalaneCalcWith([], ether)
})
- it('returns the network balance', function () {
- const result = nonceTracker.getBalance()
- assert.equal(result, ether, 'returns one ether')
+ it('returns the network balance', async function () {
+ const result = await nonceTracker.getBalance()
+ assert.equal(result, ether, `gave ${result} needed ${ether}`)
})
})
})
function generateBalaneCalcWith (transactions, providerStub = '0x0') {
- const getPendingTransactions = () => transactions
+ const getPendingTransactions = () => Promise.resolve(transactions)
+ const getBalance = () => Promise.resolve(providerStub)
providerResultStub.result = providerStub
const provider = {
sendAsync: (_, cb) => { cb(undefined, providerResultStub) },
@@ -31,7 +32,7 @@ function generateBalaneCalcWith (transactions, providerStub = '0x0') {
},
}
return new PendingBalanceCalculator({
- provider,
+ getBalance,
getPendingTransactions,
})
}