Add additional test to ui utils to account for exact wei values.

feature/default_network_editable
Kevin Serrano 7 years ago
parent 3e562f1a1e
commit adf4b89804
No known key found for this signature in database
GPG Key ID: BF999DEFC7371BA1
  1. 6
      test/unit/util_test.js

@ -207,6 +207,12 @@ describe('util', function () {
var output = util.normalizeEthStringToWei(input)
assert.equal(output.toString(10), '1111111111111111111')
})
it('should not truncate very exact wei values that do not have extra precision.', function () {
var input = '1.100000000000000001'
var output = util.normalizeEthStringToWei(input)
assert.equal(output.toString(10), '1100000000000000001')
})
})
describe('#normalizeNumberToWei', function () {

Loading…
Cancel
Save