aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/migrations/template-test.js
blob: f606cce6fb3f9cfa609bfd56566150b4c4949903 (plain) (blame)
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)
  })
})