diff options
author | Dan Finlay <dan@danfinlay.com> | 2017-08-17 08:17:05 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2017-08-17 08:17:05 +0800 |
commit | f684b53b69116ef6b9e2b0449956d8f59df56253 (patch) | |
tree | 1e6c020045a780070f894d6bbf7554d78da2ee63 /test/unit | |
parent | e3a5c3684d795e90d17f39019ed46115e2401510 (diff) | |
download | tangerine-wallet-browser-f684b53b69116ef6b9e2b0449956d8f59df56253.tar tangerine-wallet-browser-f684b53b69116ef6b9e2b0449956d8f59df56253.tar.gz tangerine-wallet-browser-f684b53b69116ef6b9e2b0449956d8f59df56253.tar.bz2 tangerine-wallet-browser-f684b53b69116ef6b9e2b0449956d8f59df56253.tar.lz tangerine-wallet-browser-f684b53b69116ef6b9e2b0449956d8f59df56253.tar.xz tangerine-wallet-browser-f684b53b69116ef6b9e2b0449956d8f59df56253.tar.zst tangerine-wallet-browser-f684b53b69116ef6b9e2b0449956d8f59df56253.zip |
Remove dead tests
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/actions/tx_test.js | 87 |
1 files changed, 1 insertions, 86 deletions
diff --git a/test/unit/actions/tx_test.js b/test/unit/actions/tx_test.js index 67c72e9a5..ea6dfda6a 100644 --- a/test/unit/actions/tx_test.js +++ b/test/unit/actions/tx_test.js @@ -53,7 +53,7 @@ describe('tx confirmation screen', function () { result = reducers(initialState, action) done() }) - + }) it('should transition to the account detail view', function () { @@ -65,91 +65,6 @@ describe('tx confirmation screen', function () { assert.equal(count, 0) }) }) - - describe('sendTx', function () { - var result - - describe('when there is an error', function () { - before(function (done) { - actions._setBackgroundConnection({ - approveTransaction (txId, cb) { cb({message: 'An error!'}) }, - }) - - actions.sendTx({id: firstTxId})(function (action) { - result = reducers(initialState, action) - done() - }) - }) - - it('should stay on the page', function () { - assert.equal(result.appState.currentView.name, 'confTx') - }) - - it('should set errorMessage on the currentView', function () { - assert(result.appState.currentView.errorMessage) - }) - }) - - describe('when there is success', function () { - it('should complete tx and go home', function () { - actions._setBackgroundConnection({ - approveTransaction (txId, cb) { cb() }, - }) - - var dispatchExpect = sinon.mock() - dispatchExpect.twice() - - actions.sendTx({id: firstTxId})(dispatchExpect) - }) - }) - }) - - describe('when there are two pending txs', function () { - var firstTxId = 1457634084250832 - var result, initialState - before(function (done) { - initialState = { - appState: { - currentView: { - name: 'confTx', - }, - }, - metamask: { - unapprovedTxs: { - '1457634084250832': { - id: firstTxId, - status: 'unconfirmed', - time: 1457634084250, - }, - '1457634084250833': { - id: 1457634084250833, - status: 'unconfirmed', - time: 1457634084255, - }, - }, - }, - } - freeze(initialState) - - // Mocking a background connection: - actions._setBackgroundConnection({ - approveTransaction (firstTxId, cb) { cb() }, - }) - - actions.sendTx({id: firstTxId})(function (action) { - result = reducers(initialState, action) - }) - done() - }) - - it('should stay on the confTx view', function () { - assert.equal(result.appState.currentView.name, 'confTx') - }) - - it('should transition to the first tx', function () { - assert.equal(result.appState.currentView.context, 0) - }) - }) }) }) |