diff options
author | frankiebee <frankie.diamond@gmail.com> | 2018-04-05 05:56:30 +0800 |
---|---|---|
committer | frankiebee <frankie.diamond@gmail.com> | 2018-04-05 05:57:27 +0800 |
commit | 245c01bc0fed585c4ac8ed05edf7ebe1a65de80b (patch) | |
tree | 72dd6dbf4c97409b54bfe857bbe8cb18b6dc7849 /test/unit | |
parent | 6ab938546c3b41d188df62f0cc180aa9b6c72cf6 (diff) | |
download | tangerine-wallet-browser-245c01bc0fed585c4ac8ed05edf7ebe1a65de80b.tar tangerine-wallet-browser-245c01bc0fed585c4ac8ed05edf7ebe1a65de80b.tar.gz tangerine-wallet-browser-245c01bc0fed585c4ac8ed05edf7ebe1a65de80b.tar.bz2 tangerine-wallet-browser-245c01bc0fed585c4ac8ed05edf7ebe1a65de80b.tar.lz tangerine-wallet-browser-245c01bc0fed585c4ac8ed05edf7ebe1a65de80b.tar.xz tangerine-wallet-browser-245c01bc0fed585c4ac8ed05edf7ebe1a65de80b.tar.zst tangerine-wallet-browser-245c01bc0fed585c4ac8ed05edf7ebe1a65de80b.zip |
transactions - make #_validateTxParams not async and "linting" wink wink nudge nudge
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/tx-controller-test.js | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/test/unit/tx-controller-test.js b/test/unit/tx-controller-test.js index 81d32ae29..3fec9758f 100644 --- a/test/unit/tx-controller-test.js +++ b/test/unit/tx-controller-test.js @@ -210,28 +210,25 @@ describe('Transaction Controller', function () { }) }) - describe('#validateTxParams', function () { - it('does not throw for positive values', function (done) { + describe('#_validateTxParams', function () { + it('does not throw for positive values', function () { var sample = { from: '0x1678a085c290ebd122dc42cba69373b5953b831d', value: '0x01', } - txController._validateTxParams(sample).then(() => { - done() - }).catch(done) + txController._validateTxParams(sample) }) - it('returns error for negative values', function (done) { + it('returns error for negative values', function () { var sample = { from: '0x1678a085c290ebd122dc42cba69373b5953b831d', value: '-0x01', } - txController._validateTxParams(sample) - .then(() => done('expected to thrown on negativity values but didn\'t')) - .catch((err) => { + try { + txController._validateTxParams(sample) + } catch (err) { assert.ok(err, 'error') - done() - }) + } }) }) |