1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00
metamask-extension/test/unit/extension-store-test.js

30 lines
665 B
JavaScript
Raw Normal View History

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 () {
})
})
})