aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/extension-store-test.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2018-01-24 08:27:38 +0800
committerDan Finlay <dan@danfinlay.com>2018-01-24 08:33:37 +0800
commit7c4a9c32fa449197bf790b6ce6e91c41efe05ab9 (patch)
tree1179d69c2d8c721d5873cb945d4bda8e21b4918a /test/unit/extension-store-test.js
parent03c64ba8a646cbc5a62f2b2a8c5881bb4a4bda60 (diff)
parent456dfdb9fdc0b7b0637d50808beb85ae33602f5b (diff)
downloadtangerine-wallet-browser-7c4a9c32fa449197bf790b6ce6e91c41efe05ab9.tar.gz
tangerine-wallet-browser-7c4a9c32fa449197bf790b6ce6e91c41efe05ab9.tar.zst
tangerine-wallet-browser-7c4a9c32fa449197bf790b6ce6e91c41efe05ab9.zip
Merge branch 'UseStorageLocal' into i3076-UseStorageLocalInstead
Diffstat (limited to 'test/unit/extension-store-test.js')
-rw-r--r--test/unit/extension-store-test.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/unit/extension-store-test.js b/test/unit/extension-store-test.js
new file mode 100644
index 000000000..e3b5713fb
--- /dev/null
+++ b/test/unit/extension-store-test.js
@@ -0,0 +1,29 @@
+const assert = require('assert')
+
+const ExtensionStore = require('../../app/scripts/lib/extension-store')
+
+describe('Extension Store', function () {
+ let extensionStore
+
+ beforeEach(function () {
+ extensionStore = new ExtensionStore()
+ })
+
+ describe('#fetch', function () {
+ it('should return a promise', function () {
+
+ })
+ it('after promise resolution, should have loaded the proper data from the extension', function () {
+
+ })
+ })
+
+ describe('#sync', function () {
+ it('should return a promise', function () {
+
+ })
+ it('after promise resolution, should have synced the proper data from the extension', function () {
+
+ })
+ })
+})