diff options
author | Zac Mitton <zacmitton22@gmail.com> | 2016-06-21 06:46:29 +0800 |
---|---|---|
committer | Zac Mitton <zacmitton22@gmail.com> | 2016-06-21 06:46:29 +0800 |
commit | 9132f085070a99499a75d6353983bd1683f7a3f0 (patch) | |
tree | 906453bc38a443bf7c7a576bcd5bedcd46787859 /test/unit/util_test.js | |
parent | d19c286ee8dbd748ef0e1770545299879dada1da (diff) | |
download | tangerine-wallet-browser-9132f085070a99499a75d6353983bd1683f7a3f0.tar tangerine-wallet-browser-9132f085070a99499a75d6353983bd1683f7a3f0.tar.gz tangerine-wallet-browser-9132f085070a99499a75d6353983bd1683f7a3f0.tar.bz2 tangerine-wallet-browser-9132f085070a99499a75d6353983bd1683f7a3f0.tar.lz tangerine-wallet-browser-9132f085070a99499a75d6353983bd1683f7a3f0.tar.xz tangerine-wallet-browser-9132f085070a99499a75d6353983bd1683f7a3f0.tar.zst tangerine-wallet-browser-9132f085070a99499a75d6353983bd1683f7a3f0.zip |
added a failing case and fixed it by refactoring everything to strings
Diffstat (limited to 'test/unit/util_test.js')
-rw-r--r-- | test/unit/util_test.js | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/test/unit/util_test.js b/test/unit/util_test.js index 12a16999e..e2390c8d4 100644 --- a/test/unit/util_test.js +++ b/test/unit/util_test.js @@ -25,12 +25,26 @@ describe('util', function() { }) }) describe('parseBalance', function() { - it('should render 0.01 eth correctly', function() { + it('should render 12.023 eth correctly', function() { const input = 'A6DA46CCA6858000' const output = util.parseBalance(input) assert.deepEqual(output, ['12', '023']) }) }) + describe('parseBalance', function() { + it('should render 0.0000000342422 eth correctly', function() { + const input = '0x7F8FE81C0' + const output = util.parseBalance(input) + assert.deepEqual(output, ['0', '0000000342422']) + }) + }) + describe('parseBalance', function() { + it('should render 0 eth correctly', function() { + const input = '0x0' + const output = util.parseBalance(input) + assert.deepEqual(output, ['0', '0']) + }) + }) describe('addressSummary', function() { it('should add case-sensitive checksum', function() { |