mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Remove unrelated test file
This commit is contained in:
parent
99b49b11f6
commit
6253885e28
@ -1,38 +0,0 @@
|
|||||||
const assert = require('assert')
|
|
||||||
const ethUtil = require('ethereumjs-util')
|
|
||||||
const BN = ethUtil.BN
|
|
||||||
|
|
||||||
const TxUtils = require('../../app/scripts/lib/tx-utils')
|
|
||||||
|
|
||||||
|
|
||||||
describe('txUtils', function() {
|
|
||||||
let txUtils
|
|
||||||
|
|
||||||
before(function() {
|
|
||||||
txUtils = new TxUtils()
|
|
||||||
})
|
|
||||||
|
|
||||||
describe('addGasBuffer', function() {
|
|
||||||
describe('adds a flat value', function() {
|
|
||||||
it('over an empty value', function() {
|
|
||||||
const input = '0x0'
|
|
||||||
const output = txUtils.addGasBuffer(input)
|
|
||||||
assert.notEqual(output, input, 'changed the value')
|
|
||||||
|
|
||||||
const inputBn = new BN(input, 'hex')
|
|
||||||
const outputBn = new BN(output, 'hex')
|
|
||||||
assert(outputBn.gt(inputBn), 'returns a greater value')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('over an value', function() {
|
|
||||||
const input = '0x123fad'
|
|
||||||
const output = txUtils.addGasBuffer(input)
|
|
||||||
assert.notEqual(output, input, 'changed the value')
|
|
||||||
|
|
||||||
const inputBn = new BN(input, 'hex')
|
|
||||||
const outputBn = new BN(output, 'hex')
|
|
||||||
assert(outputBn.gt(inputBn), 'returns a greater value')
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
Loading…
Reference in New Issue
Block a user