aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2018-07-04 04:56:18 +0800
committerkumavis <aaron@kumavis.me>2018-07-04 04:56:18 +0800
commitfa02a6c7c65f6866998171881fd657570fe3fe7b (patch)
tree851a0bd2d0ecd20f59fd660f50a374dc54ee33a9 /test
parent21ae81dc43a213870bcb31e814029d450ce78389 (diff)
downloadtangerine-wallet-browser-fa02a6c7c65f6866998171881fd657570fe3fe7b.tar
tangerine-wallet-browser-fa02a6c7c65f6866998171881fd657570fe3fe7b.tar.gz
tangerine-wallet-browser-fa02a6c7c65f6866998171881fd657570fe3fe7b.tar.bz2
tangerine-wallet-browser-fa02a6c7c65f6866998171881fd657570fe3fe7b.tar.lz
tangerine-wallet-browser-fa02a6c7c65f6866998171881fd657570fe3fe7b.tar.xz
tangerine-wallet-browser-fa02a6c7c65f6866998171881fd657570fe3fe7b.tar.zst
tangerine-wallet-browser-fa02a6c7c65f6866998171881fd657570fe3fe7b.zip
test - unit - remove tests for obsolete methods
Diffstat (limited to 'test')
-rw-r--r--test/unit/app/controllers/transactions/pending-tx-test.js52
1 files changed, 0 insertions, 52 deletions
diff --git a/test/unit/app/controllers/transactions/pending-tx-test.js b/test/unit/app/controllers/transactions/pending-tx-test.js
index 2a2db0560..ba15f1953 100644
--- a/test/unit/app/controllers/transactions/pending-tx-test.js
+++ b/test/unit/app/controllers/transactions/pending-tx-test.js
@@ -96,58 +96,6 @@ describe('PendingTransactionTracker', function () {
})
})
- describe('#checkForTxInBlock', function () {
- it('should return if no pending transactions', function () {
- // throw a type error if it trys to do anything on the block
- // thus failing the test
- const block = Proxy.revocable({}, {}).revoke()
- pendingTxTracker.checkForTxInBlock(block)
- })
- it('should emit \'tx:failed\' if the txMeta does not have a hash', function (done) {
- const block = Proxy.revocable({}, {}).revoke()
- pendingTxTracker.getPendingTransactions = () => [txMetaNoHash]
- pendingTxTracker.once('tx:failed', (txId, err) => {
- assert(txId, txMetaNoHash.id, 'should pass txId')
- done()
- })
- pendingTxTracker.checkForTxInBlock(block)
- })
- it('should emit \'txConfirmed\' if the tx is in the block', function (done) {
- const block = { transactions: [txMeta]}
- pendingTxTracker.getPendingTransactions = () => [txMeta]
- pendingTxTracker.once('tx:confirmed', (txId) => {
- assert(txId, txMeta.id, 'should pass txId')
- done()
- })
- pendingTxTracker.once('tx:failed', (_, err) => { done(err) })
- pendingTxTracker.checkForTxInBlock(block)
- })
- })
- describe('#queryPendingTxs', function () {
- it('should call #_checkPendingTxs if their is no oldBlock', function (done) {
- let oldBlock
- const newBlock = { number: '0x01' }
- pendingTxTracker._checkPendingTxs = done
- pendingTxTracker.queryPendingTxs({ oldBlock, newBlock })
- })
- it('should call #_checkPendingTxs if oldBlock and the newBlock have a diff of greater then 1', function (done) {
- const oldBlock = { number: '0x01' }
- const newBlock = { number: '0x03' }
- pendingTxTracker._checkPendingTxs = done
- pendingTxTracker.queryPendingTxs({ oldBlock, newBlock })
- })
- it('should not call #_checkPendingTxs if oldBlock and the newBlock have a diff of 1 or less', function (done) {
- const oldBlock = { number: '0x1' }
- const newBlock = { number: '0x2' }
- pendingTxTracker._checkPendingTxs = () => {
- const err = new Error('should not call #_checkPendingTxs if oldBlock and the newBlock have a diff of 1 or less')
- done(err)
- }
- pendingTxTracker.queryPendingTxs({ oldBlock, newBlock })
- done()
- })
- })
-
describe('#_checkPendingTx', function () {
it('should emit \'tx:failed\' if the txMeta does not have a hash', function (done) {
pendingTxTracker.once('tx:failed', (txId, err) => {