aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/extension-store-test.js
blob: e3b5713fbd16b71411899ef7c1cc1d708e19a65d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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 () {

    })
  })
})