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

Linted test

This commit is contained in:
Dan Finlay 2017-05-17 00:34:56 -07:00
parent 6f02f5bc5d
commit bfb1c92ded

View File

@ -9,11 +9,9 @@ const BN = ethUtil.BN
var BnInput = require('../../../ui/app/components/bn-as-decimal-input')
describe('BnInput', function () {
let bnInput
it('can tolerate a gas decimal number at a high precision', function (done) {
const renderer = ReactTestUtils.createRenderer();
const renderer = ReactTestUtils.createRenderer()
let valueStr = '20'
while (valueStr.length < 20) {
@ -35,9 +33,9 @@ describe('BnInput', function () {
value,
precision,
onChange: (newBn) => {
assert.equal(newBn.toString(), targetValue.toString(), 'should tolerate increase')
assert.equal(newBn.toString(), target.toString(), 'should tolerate increase')
done()
}
},
}
const inputComponent = h(BnInput, props)
@ -46,7 +44,7 @@ describe('BnInput', function () {
const input = additions.find(component, 'input.hex-input')[0]
ReactTestUtils.Simulate.change(input, { preventDefault() {}, target: {
value: inputStr,
checkValidity() {return true} },
checkValidity() { return true } },
})
})
})