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

59 lines
1.4 KiB
JavaScript
Raw Normal View History

import migration31 from './031';
describe('migration #31', () => {
it('should set completedOnboarding to true if vault exists', async () => {
const oldStorage = {
2020-11-03 00:41:28 +01:00
meta: {},
data: {
PreferencesController: {
tokens: [
{ address: '0xa', symbol: 'A', decimals: 4 },
{ address: '0xb', symbol: 'B', decimals: 4 },
],
identities: {
'0x6d14': {},
'0x3695': {},
},
},
2020-11-03 00:41:28 +01:00
KeyringController: {
vault: {
data: 'test0',
iv: 'test1',
salt: 'test2',
},
},
},
};
const newStorage = await migration31.migrate(oldStorage);
expect(
newStorage.data.PreferencesController.completedOnboarding,
).toStrictEqual(true);
});
it('should set completedOnboarding to false if vault does not exist', async () => {
const oldStorage = {
2020-11-03 00:41:28 +01:00
meta: {},
data: {
PreferencesController: {
tokens: [
{ address: '0xa', symbol: 'A', decimals: 4 },
{ address: '0xb', symbol: 'B', decimals: 4 },
],
identities: {
'0x6d14': {},
'0x3695': {},
},
},
2020-11-03 00:41:28 +01:00
KeyringController: {},
},
};
const newStorage = await migration31.migrate(oldStorage);
expect(
newStorage.data.PreferencesController.completedOnboarding,
).toStrictEqual(false);
});
});