2021-02-04 19:15:23 +01:00
|
|
|
import assert from 'assert';
|
|
|
|
import migrationTemplate from '../../../app/scripts/migrations/template';
|
2020-01-09 04:34:58 +01:00
|
|
|
|
2018-04-06 01:22:24 +02:00
|
|
|
const storage = {
|
|
|
|
meta: {},
|
|
|
|
data: {},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2018-04-06 01:22:24 +02:00
|
|
|
|
2020-02-11 17:51:13 +01:00
|
|
|
describe('storage is migrated successfully', function () {
|
|
|
|
it('should work', function (done) {
|
2020-11-03 00:41:28 +01:00
|
|
|
migrationTemplate
|
|
|
|
.migrate(storage)
|
2019-07-31 22:17:11 +02:00
|
|
|
.then((migratedData) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
assert.equal(migratedData.meta.version, 0);
|
|
|
|
done();
|
2020-11-03 00:41:28 +01:00
|
|
|
})
|
2021-02-04 19:15:23 +01:00
|
|
|
.catch(done);
|
|
|
|
});
|
|
|
|
});
|