1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00
metamask-extension/test/unit/migrations/046-test.js

53 lines
1.2 KiB
JavaScript
Raw Normal View History

import { strict as assert } from 'assert'
import migration46 from '../../../app/scripts/migrations/046'
describe('migration #46', function () {
it('should update the version metadata', async function () {
const oldStorage = {
2020-11-03 00:41:28 +01:00
meta: {
version: 45,
},
2020-11-03 00:41:28 +01:00
data: {},
}
const newStorage = await migration46.migrate(oldStorage)
assert.deepEqual(newStorage.meta, {
2020-11-03 00:41:28 +01:00
version: 46,
})
})
it('should delete ABTestController state', async function () {
const oldStorage = {
meta: {},
data: {
ABTestController: {
abTests: {
fullScreenVsPopup: 'control',
},
},
foo: 'bar',
},
}
const newStorage = await migration46.migrate(oldStorage)
assert.deepEqual(newStorage.data, {
foo: 'bar',
})
})
it('should do nothing if ABTestController state does not exist', async function () {
const oldStorage = {
meta: {},
data: {
AppStateController: {
bar: 'baz',
},
foo: 'bar',
},
}
const newStorage = await migration46.migrate(oldStorage)
assert.deepEqual(oldStorage.data, newStorage.data)
})
})