1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-25 21:00:23 +02:00
metamask-extension/test/unit/migrations/038-test.js

67 lines
1.4 KiB
JavaScript
Raw Normal View History

import { strict as assert } from 'assert'
import migration38 from '../../../app/scripts/migrations/038'
describe('migration #38', function () {
it('should update the version metadata', function (done) {
const oldStorage = {
2020-11-03 00:41:28 +01:00
meta: {
version: 37,
},
2020-11-03 00:41:28 +01:00
data: {},
}
2020-11-03 00:41:28 +01:00
migration38
.migrate(oldStorage)
.then((newStorage) => {
assert.deepEqual(newStorage.meta, {
2020-11-03 00:41:28 +01:00
version: 38,
})
done()
})
.catch(done)
})
it('should add a fullScreenVsPopup property set to either "control" or "fullScreen"', function (done) {
const oldStorage = {
2020-11-03 00:41:28 +01:00
meta: {},
data: {},
}
2020-11-03 00:41:28 +01:00
migration38
.migrate(oldStorage)
.then((newStorage) => {
2020-11-03 00:41:28 +01:00
assert.equal(
newStorage.data.ABTestController.abTests.fullScreenVsPopup,
'control',
)
done()
})
.catch(done)
})
it('should leave the fullScreenVsPopup property unchanged if it exists', function (done) {
const oldStorage = {
2020-11-03 00:41:28 +01:00
meta: {},
data: {
ABTestController: {
abTests: {
2020-11-03 00:41:28 +01:00
fullScreenVsPopup: 'fullScreen',
},
},
},
}
2020-11-03 00:41:28 +01:00
migration38
.migrate(oldStorage)
.then((newStorage) => {
assert.deepEqual(newStorage.data.ABTestController, {
abTests: {
2020-11-03 00:41:28 +01:00
fullScreenVsPopup: 'fullScreen',
},
})
done()
})
.catch(done)
})
})