web3.js/test/utils.toDecimal.js

15 lines
476 B
JavaScript
Raw Normal View History

2015-02-26 06:54:49 -08:00
var assert = require('assert');
2015-03-08 10:18:52 -07:00
var utils = require('../lib/utils/utils.js');
2015-02-26 06:54:49 -08:00
2015-03-25 14:17:35 -07:00
describe('lib/utils/utils', function () {
2015-02-26 06:54:49 -08:00
describe('toDecimal', function () {
it('should return the correct value', function () {
assert.equal(utils.toDecimal("0x3e8"), '1000');
// allow compatiblity
assert.equal(utils.toDecimal(100000), '100000');
assert.equal(utils.toDecimal('100000'), '100000');
});
});
2015-03-08 10:18:52 -07:00
});