diff options
author | Dan J Miller <danjm.com@gmail.com> | 2019-01-30 20:16:12 +0800 |
---|---|---|
committer | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2019-01-30 20:16:12 +0800 |
commit | 02bdbbbc3e2d349ddde5657069ec6dda15fc6668 (patch) | |
tree | 09c2f2dad8263695dee5f49b0ae30c6b59503205 /test | |
parent | df3169d1c7250d13bb8bc123dc91f7913ad75a81 (diff) | |
download | tangerine-wallet-browser-02bdbbbc3e2d349ddde5657069ec6dda15fc6668.tar.gz tangerine-wallet-browser-02bdbbbc3e2d349ddde5657069ec6dda15fc6668.tar.zst tangerine-wallet-browser-02bdbbbc3e2d349ddde5657069ec6dda15fc6668.zip |
Add visual indicator when displaying a cached balance (#5854)
Diffstat (limited to 'test')
-rw-r--r-- | test/data/mock-state.json | 1 | ||||
-rw-r--r-- | test/unit/ui/app/selectors.spec.js | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/test/data/mock-state.json b/test/data/mock-state.json index 8deff5531..671697182 100644 --- a/test/data/mock-state.json +++ b/test/data/mock-state.json @@ -11,6 +11,7 @@ "name": "Test Account 2" } }, + "cachedBalances": {}, "unapprovedTxs": { "8393540981007587": { "id": 8393540981007587, diff --git a/test/unit/ui/app/selectors.spec.js b/test/unit/ui/app/selectors.spec.js index e2b198abf..070de0bcd 100644 --- a/test/unit/ui/app/selectors.spec.js +++ b/test/unit/ui/app/selectors.spec.js @@ -19,6 +19,7 @@ describe('Selectors', function () { 'address': '0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc', }, }, + cachedBalances: {}, }, } }) |