aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/util_test.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-07-07 09:06:28 +0800
committerDan Finlay <dan@danfinlay.com>2016-07-07 09:06:28 +0800
commit689bd58d815ae91970953a08ef2e94c0eeb1335b (patch)
treef276410d9a8afd160826ef73c433912dd7c50615 /test/unit/util_test.js
parent15afbe5b1f77df36fb348ab272a7b6a6818bf017 (diff)
parent525abb85d4848e2593f7ffaf4e462e067a64632f (diff)
downloadtangerine-wallet-browser-689bd58d815ae91970953a08ef2e94c0eeb1335b.tar
tangerine-wallet-browser-689bd58d815ae91970953a08ef2e94c0eeb1335b.tar.gz
tangerine-wallet-browser-689bd58d815ae91970953a08ef2e94c0eeb1335b.tar.bz2
tangerine-wallet-browser-689bd58d815ae91970953a08ef2e94c0eeb1335b.tar.lz
tangerine-wallet-browser-689bd58d815ae91970953a08ef2e94c0eeb1335b.tar.xz
tangerine-wallet-browser-689bd58d815ae91970953a08ef2e94c0eeb1335b.tar.zst
tangerine-wallet-browser-689bd58d815ae91970953a08ef2e94c0eeb1335b.zip
Merged latest balance formatting code
Diffstat (limited to 'test/unit/util_test.js')
-rw-r--r--test/unit/util_test.js21
1 files changed, 4 insertions, 17 deletions
diff --git a/test/unit/util_test.js b/test/unit/util_test.js
index dbc9816f5..41355686e 100644
--- a/test/unit/util_test.js
+++ b/test/unit/util_test.js
@@ -148,35 +148,22 @@ describe('util', function() {
it('when given nothing', function() {
var result = util.formatBalance()
- assert.equal(result, '0 ETH', 'should return "0 ETH"')
- })
-
- it('should return eth as string followed by ETH', function() {
- var input = new ethUtil.BN(ethInWei, 10).toJSON()
- var result = util.formatBalance(input, 4)
- assert.equal(result, '1.0000 ETH')
- })
-
- it('should return eth as string followed by ETH', function() {
- var input = new ethUtil.BN(ethInWei, 10).div(new ethUtil.BN('2', 10)).toJSON()
- var result = util.formatBalance(input, 3)
- assert.equal(result, '0.500 ETH')
})
it('should display specified decimal points', function() {
var input = "0x128dfa6a90b28000"
var result = util.formatBalance(input, 2)
- assert.equal(result, '1.33 ETH')
+ assert.equal(result.formatted, '1.33 ETH')
})
- it('should default to 3 decimal points', function() {
+ it('should default to 2 decimal points', function() {
var input = "0x128dfa6a90b28000"
var result = util.formatBalance(input)
- assert.equal(result, '1.337 ETH')
+ assert.equal(result.formatted, '1.33 ETH')
})
it('should show 2 significant digits for tiny balances', function() {
var input = "0x1230fa6a90b28"
var result = util.formatBalance(input)
- assert.equal(result, '0.00032 ETH')
+ assert.equal(result.formatted, '0.00032 ETH')
})
})