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/045.test.js

77 lines
1.6 KiB

import migration45 from './045';
describe('migration #45', () => {
it('should update the version metadata', async () => {
const oldStorage = {
meta: {
version: 44,
},
data: {},
};
const newStorage = await migration45.migrate(oldStorage);
expect(newStorage.meta).toStrictEqual({
version: 45,
});
});
it('should update ipfsGateway value if outdated', async () => {
const oldStorage = {
meta: {},
data: {
PreferencesController: {
ipfsGateway: 'ipfs.dweb.link',
bar: 'baz',
},
foo: 'bar',
},
};
const newStorage = await migration45.migrate(oldStorage);
expect(newStorage.data).toStrictEqual({
PreferencesController: {
ipfsGateway: 'dweb.link',
bar: 'baz',
},
foo: 'bar',
});
});
it('should not update ipfsGateway value if custom set', async () => {
const oldStorage = {
meta: {},
data: {
PreferencesController: {
ipfsGateway: 'blah',
bar: 'baz',
},
foo: 'bar',
},
};
const newStorage = await migration45.migrate(oldStorage);
expect(newStorage.data).toStrictEqual({
PreferencesController: {
ipfsGateway: 'blah',
bar: 'baz',
},
foo: 'bar',
});
});
it('should do nothing if no PreferencesController key', async () => {
const oldStorage = {
meta: {},
data: {
foo: 'bar',
},
};
const newStorage = await migration45.migrate(oldStorage);
expect(newStorage.data).toStrictEqual({
foo: 'bar',
});
});
});