aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/migrations/template-test.js
blob: 35060e2fe33d618fedd01284ed358f47f295f1c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const assert = require('assert')
const migrationTemplate = require('../../../app/scripts/migrations/template')
const properTime = (new Date()).getTime()
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)
  })
})