diff options
author | Ellie Day <heyellieday@gmail.com> | 2017-12-23 22:23:34 +0800 |
---|---|---|
committer | Ellie Day <heyellieday@gmail.com> | 2017-12-23 22:23:34 +0800 |
commit | a76324f6d397c3e746ba501cfd858c4869cb0af7 (patch) | |
tree | f29403ceaa71a7c374046d223b79f032e6045604 /test/unit/extension-store-test.js | |
parent | d3f5ad874e4bf90cda4e440f9b0635c6ac416382 (diff) | |
download | tangerine-wallet-browser-a76324f6d397c3e746ba501cfd858c4869cb0af7.tar tangerine-wallet-browser-a76324f6d397c3e746ba501cfd858c4869cb0af7.tar.gz tangerine-wallet-browser-a76324f6d397c3e746ba501cfd858c4869cb0af7.tar.bz2 tangerine-wallet-browser-a76324f6d397c3e746ba501cfd858c4869cb0af7.tar.lz tangerine-wallet-browser-a76324f6d397c3e746ba501cfd858c4869cb0af7.tar.xz tangerine-wallet-browser-a76324f6d397c3e746ba501cfd858c4869cb0af7.tar.zst tangerine-wallet-browser-a76324f6d397c3e746ba501cfd858c4869cb0af7.zip |
Add ExtensionStore and add basic store instance syncing to main controller
Diffstat (limited to 'test/unit/extension-store-test.js')
-rw-r--r-- | test/unit/extension-store-test.js | 29 |
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 () { + + }) + }) +}) |