A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
ciphermask/app/scripts/migrations/040.test.js

42 lines
993 B

import migration40 from './040';
describe('migration #40', () => {
it('should update the version metadata', async () => {
const oldStorage = {
meta: {
version: 39,
},
data: {},
};
const newStorage = await migration40.migrate(oldStorage);
expect(newStorage.meta?.version).toStrictEqual(40);
});
it('should delete ProviderApprovalController storage key', async () => {
const oldStorage = {
meta: {},
data: {
ProviderApprovalController: {},
foo: 'bar',
},
};
const newStorage = await migration40.migrate(oldStorage);
expect(newStorage.data).toStrictEqual({
foo: 'bar',
});
});
it('should do nothing if no ProviderApprovalController storage key', async () => {
const oldStorage = {
meta: {},
data: { foo: 'bar' },
};
const newStorage = await migration40.migrate(oldStorage);
expect(newStorage.data).toStrictEqual({
foo: 'bar',
});
});
});