1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/test/unit/migrations/046.test.js
Thomas Huang 3ba91df387
Unifies unit tests filename suffix to .test.js (#10607)
* Unifies the filename suffix to .test.js

* Display @babel/no-invalid-this rule for tx-controller.test.js

* Add test file extension to test:unit:global
2021-03-09 11:08:06 -08:00

53 lines
1.2 KiB
JavaScript

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 = {
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);
});
});