mirror of https://github.com/status-im/web3.js.git
28 lines
868 B
JavaScript
28 lines
868 B
JavaScript
var chai = require('chai');
|
|
var assert = chai.assert;
|
|
var formatters = require('../lib/web3/formatters.js');
|
|
var BigNumber = require('bignumber.js');
|
|
|
|
describe('formatters', function () {
|
|
describe('inputTransactionFormatter', function () {
|
|
it('should return the correct value', function () {
|
|
|
|
assert.deepEqual(formatters.inputTransactionFormatter({
|
|
data: '0x34234bf23bf4234',
|
|
value: new BigNumber(100),
|
|
from: '0x00000',
|
|
to: '0x00000',
|
|
gas: 1000,
|
|
gasPrice: new BigNumber(1000)
|
|
}), {
|
|
data: '0x34234bf23bf4234',
|
|
value: '0x64',
|
|
from: '0x00000',
|
|
to: '0x00000',
|
|
gas: '0x3e8',
|
|
gasPrice: '0x3e8'
|
|
});
|
|
});
|
|
});
|
|
});
|