1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Verify updating gas value updates

This commit is contained in:
Dan Finlay 2017-05-15 15:21:28 -07:00
parent 4b341e6a95
commit 75d9b5619c
2 changed files with 5 additions and 5 deletions

View File

@ -7,6 +7,7 @@ const React = require('react')
const shallow = require('react-test-renderer/shallow')
const Factory = createReactFactory(PendingTx)
const ReactTestUtils = require('react-addons-test-utils')
const ethUtil = require('ethereumjs-util')
describe.only('PendingTx', function () {
let pendingTxComponent
@ -38,15 +39,16 @@ describe.only('PendingTx', function () {
it('should use updated values when edited.', function (done) {
const renderer = ReactTestUtils.createRenderer();
const newGasPrice = '0x451456'
const newGasPrice = '0x77359400'
const props = {
identities,
accounts: identities,
txData,
sendTransaction: (txMeta, event) => {
assert.notEqual(txMeta.txParams.gasPrice, gasPrice, 'gas price should change')
assert.equal(txMeta.txParams.gasPrice, newGasPrice, 'gas price assigned.')
const result = ethUtil.addHexPrefix(txMeta.txParams.gasPrice)
assert.notEqual(result, gasPrice, 'gas price should change')
assert.equal(result, newGasPrice, 'gas price assigned.')
done()
},
}

View File

@ -381,8 +381,6 @@ PendingTx.prototype.onSubmit = function (event) {
PendingTx.prototype.checkValidity = function() {
const form = this.getFormEl()
console.log("check validity got form el:")
console.dir(form)
const valid = form.checkValidity()
return valid
}