diff options
author | Thomas <tmashuang@gmail.com> | 2018-02-28 07:51:14 +0800 |
---|---|---|
committer | Thomas <tmashuang@gmail.com> | 2018-02-28 07:51:14 +0800 |
commit | f9de87af51ccb1190ca93e524de24f8a32ea3d9e (patch) | |
tree | 80dd667bb09260d6e4ce2913baef975293e120c0 /test | |
parent | b2f53fa35481006cba37d89ebf4c7a866be4f125 (diff) | |
download | tangerine-wallet-browser-f9de87af51ccb1190ca93e524de24f8a32ea3d9e.tar.gz tangerine-wallet-browser-f9de87af51ccb1190ca93e524de24f8a32ea3d9e.tar.zst tangerine-wallet-browser-f9de87af51ccb1190ca93e524de24f8a32ea3d9e.zip |
Using noop to not lose it
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/network-contoller-test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/network-contoller-test.js b/test/unit/network-contoller-test.js index cd8c345c5..51ad09f87 100644 --- a/test/unit/network-contoller-test.js +++ b/test/unit/network-contoller-test.js @@ -10,7 +10,7 @@ describe('# Network Controller', function () { let networkController const noop = () => {} const networkControllerProviderInit = { - getAccounts: () => {}, + getAccounts: noop, } beforeEach(function () { |