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/030.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

52 lines
1.3 KiB
JavaScript

import migrationTemplate from './030';
const storage = {
meta: {},
data: {
NetworkController: {
network: 'fail',
provider: {
chainId: 'fail',
nickname: '',
rpcTarget: 'https://api.myetherwallet.com/eth',
ticker: 'ETH',
type: 'rinkeby',
},
},
PreferencesController: {
frequentRpcListDetail: [
{
chainId: 'fail',
nickname: '',
rpcUrl: 'http://127.0.0.1:8545',
ticker: '',
},
{
chainId: '1',
nickname: '',
rpcUrl: 'https://api.myetherwallet.com/eth',
ticker: 'ETH',
},
],
},
},
};
describe('storage is migrated successfully', () => {
it('should work', async () => {
const migratedData = await migrationTemplate.migrate(storage);
expect(migratedData.meta.version).toStrictEqual(30);
expect(
migratedData.data.PreferencesController.frequentRpcListDetail[0].chainId,
).toBeUndefined();
expect(
migratedData.data.PreferencesController.frequentRpcListDetail[1].chainId,
).toStrictEqual('1');
expect(
migratedData.data.NetworkController.provider.chainId,
).toBeUndefined();
expect(migratedData.data.NetworkController.network).toBeUndefined();
});
});