aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorFrankie <frankie.pangilinan@consensys.net>2016-07-07 08:04:09 +0800
committerFrankie <frankie.pangilinan@consensys.net>2016-07-07 08:04:09 +0800
commit9d577ea0231802279ea0070a598f7dea9637f652 (patch)
tree2b2257b716447b15b0d90bcad3e5a7ea1d148e5e /test/unit
parent9d54f10dc5bd42f9103ff6c9f2094d5af81b2342 (diff)
downloadtangerine-wallet-browser-9d577ea0231802279ea0070a598f7dea9637f652.tar
tangerine-wallet-browser-9d577ea0231802279ea0070a598f7dea9637f652.tar.gz
tangerine-wallet-browser-9d577ea0231802279ea0070a598f7dea9637f652.tar.bz2
tangerine-wallet-browser-9d577ea0231802279ea0070a598f7dea9637f652.tar.lz
tangerine-wallet-browser-9d577ea0231802279ea0070a598f7dea9637f652.tar.xz
tangerine-wallet-browser-9d577ea0231802279ea0070a598f7dea9637f652.tar.zst
tangerine-wallet-browser-9d577ea0231802279ea0070a598f7dea9637f652.zip
Add decimal hendeling to ETH balance
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/util_test.js22
1 files changed, 5 insertions, 17 deletions
diff --git a/test/unit/util_test.js b/test/unit/util_test.js
index e2390c8d4..514a2a432 100644
--- a/test/unit/util_test.js
+++ b/test/unit/util_test.js
@@ -142,35 +142,23 @@ describe('util', function() {
it('when given nothing', function() {
var result = util.formatBalance()
- assert.equal(result, 'None', 'should return "None"')
- })
-
- 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')
+ assert.equal(result.formatted, 'None', 'should return "None"')
})
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')
})
})