1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/app/scripts/migrations/038.test.js
Thomas Huang e78e82205a
Jestify migrations/ (#12106)
* Jestify migrations/

* Lint exclude migrations from mocha config, and add inclusion to jest config

* Add migration tests to jest config

* Exclude/ignore migration tests

* Set process.env.IN_TEST to true when running tests locally
2021-09-21 09:28:13 -07:00

46 lines
1.1 KiB
JavaScript

import migration38 from './038';
describe('migration #38', () => {
it('should update the version metadata', async () => {
const oldStorage = {
meta: {
version: 37,
},
data: {},
};
const newStorage = await migration38.migrate(oldStorage);
expect(newStorage.meta.version).toStrictEqual(38);
});
it('should add a fullScreenVsPopup property set to either "control" or "fullScreen"', async () => {
const oldStorage = {
meta: {},
data: {},
};
const newStorage = await migration38.migrate(oldStorage);
expect(
newStorage.data.ABTestController?.abTests?.fullScreenVsPopup,
).toStrictEqual('control');
});
it('should leave the fullScreenVsPopup property unchanged if it exists', async () => {
const oldStorage = {
meta: {},
data: {
ABTestController: {
abTests: {
fullScreenVsPopup: 'fullScreen',
},
},
},
};
const newStorage = await migration38.migrate(oldStorage);
expect(
newStorage.data.ABTestController?.abTests?.fullScreenVsPopup,
).toStrictEqual('fullScreen');
});
});