aboutsummaryrefslogblamecommitdiffstats
path: root/test/unit/migrations/template-test.js
blob: 0db69d65a15926c7fa24eb98b7ca005f5ac338cc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

                                                                             













                                                    
const assert = require('assert')
const migrationTemplate = require('../../../app/scripts/migrations/template')
const storage = {
  meta: {},
  data: {},
}

describe('storage is migrated successfully', () => {
  it('should work', (done) => {
    migrationTemplate.migrate(storage)
    .then((migratedData) => {
      assert.equal(migratedData.meta.version, 0)
      done()
    }).catch(done)
  })
})