mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
53 lines
1.2 KiB
JavaScript
53 lines
1.2 KiB
JavaScript
import { strict as assert } from 'assert';
|
|
import migration46 from './046';
|
|
|
|
describe('migration #46', function () {
|
|
it('should update the version metadata', async function () {
|
|
const oldStorage = {
|
|
meta: {
|
|
version: 45,
|
|
},
|
|
data: {},
|
|
};
|
|
|
|
const newStorage = await migration46.migrate(oldStorage);
|
|
assert.deepEqual(newStorage.meta, {
|
|
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);
|
|
});
|
|
});
|