mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
e78e82205a
* 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
55 lines
1.2 KiB
JavaScript
55 lines
1.2 KiB
JavaScript
import migration42 from './042';
|
|
|
|
describe('migration #42', () => {
|
|
it('should update the version metadata', async () => {
|
|
const oldStorage = {
|
|
meta: {
|
|
version: 41,
|
|
},
|
|
data: {},
|
|
};
|
|
|
|
const newStorage = await migration42.migrate(oldStorage);
|
|
expect(newStorage.meta.version).toStrictEqual(42);
|
|
});
|
|
|
|
it('should set connectedStatusPopoverHasBeenShown to false', async () => {
|
|
const oldStorage = {
|
|
meta: {},
|
|
data: {
|
|
AppStateController: {
|
|
connectedStatusPopoverHasBeenShown: true,
|
|
bar: 'baz',
|
|
},
|
|
foo: 'bar',
|
|
},
|
|
};
|
|
|
|
const newStorage = await migration42.migrate(oldStorage);
|
|
expect(newStorage.data).toStrictEqual({
|
|
AppStateController: {
|
|
connectedStatusPopoverHasBeenShown: false,
|
|
bar: 'baz',
|
|
},
|
|
foo: 'bar',
|
|
});
|
|
});
|
|
|
|
it('should initialize AppStateController if it does not exist', async () => {
|
|
const oldStorage = {
|
|
meta: {},
|
|
data: {
|
|
foo: 'bar',
|
|
},
|
|
};
|
|
|
|
const newStorage = await migration42.migrate(oldStorage);
|
|
expect(newStorage.data).toStrictEqual({
|
|
foo: 'bar',
|
|
AppStateController: {
|
|
connectedStatusPopoverHasBeenShown: false,
|
|
},
|
|
});
|
|
});
|
|
});
|