diff options
author | Kevin Serrano <kevgagser@gmail.com> | 2016-10-20 05:55:08 +0800 |
---|---|---|
committer | Kevin Serrano <kevgagser@gmail.com> | 2016-10-20 05:55:08 +0800 |
commit | ad3fa24a28c0ec45dca43a257005626a4027487a (patch) | |
tree | eafbf105e0a2e5caf70fcf542b018c444705335f /test/unit | |
parent | 725d503f68f533e0d1dfc402c4316dcf677c0d89 (diff) | |
download | tangerine-wallet-browser-ad3fa24a28c0ec45dca43a257005626a4027487a.tar tangerine-wallet-browser-ad3fa24a28c0ec45dca43a257005626a4027487a.tar.gz tangerine-wallet-browser-ad3fa24a28c0ec45dca43a257005626a4027487a.tar.bz2 tangerine-wallet-browser-ad3fa24a28c0ec45dca43a257005626a4027487a.tar.lz tangerine-wallet-browser-ad3fa24a28c0ec45dca43a257005626a4027487a.tar.xz tangerine-wallet-browser-ad3fa24a28c0ec45dca43a257005626a4027487a.tar.zst tangerine-wallet-browser-ad3fa24a28c0ec45dca43a257005626a4027487a.zip |
Intermediary commit.
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/actions/restore_vault_test.js | 2 | ||||
-rw-r--r-- | test/unit/actions/tx_test.js | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/test/unit/actions/restore_vault_test.js b/test/unit/actions/restore_vault_test.js index 609f5429e..7202abb70 100644 --- a/test/unit/actions/restore_vault_test.js +++ b/test/unit/actions/restore_vault_test.js @@ -20,7 +20,7 @@ describe('#recoverFromSeed(password, seed)', function() { }) // stub out account manager - actions._setAccountManager({ + actions._setKeyringController({ recoverFromSeed(pw, seed, cb) { cb(null, { identities: { diff --git a/test/unit/actions/tx_test.js b/test/unit/actions/tx_test.js index c08a8aa26..e365ee3a3 100644 --- a/test/unit/actions/tx_test.js +++ b/test/unit/actions/tx_test.js @@ -46,7 +46,7 @@ describe('tx confirmation screen', function() { describe('cancelTx', function() { before(function(done) { - actions._setAccountManager({ + actions._setKeyringController({ approveTransaction(txId, cb) { cb('An error!') }, cancelTransaction(txId) { /* noop */ }, clearSeedWordCache(cb) { cb() }, @@ -75,7 +75,7 @@ describe('tx confirmation screen', function() { before(function(done) { alert = () => {/* noop */} - actions._setAccountManager({ + actions._setKeyringController({ approveTransaction(txId, cb) { cb({message: 'An error!'}) }, }) @@ -96,7 +96,7 @@ describe('tx confirmation screen', function() { describe('when there is success', function() { it('should complete tx and go home', function() { - actions._setAccountManager({ + actions._setKeyringController({ approveTransaction(txId, cb) { cb() }, }) @@ -135,7 +135,7 @@ describe('tx confirmation screen', function() { } freeze(initialState) - actions._setAccountManager({ + actions._setKeyringController({ approveTransaction(txId, cb) { cb() }, }) |