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

12 lines
506 B
JavaScript
Raw Normal View History

import wallet2 from '../../../test/lib/migrations/002.json';
import migration21 from './021';
2018-01-31 00:03:42 +01:00
describe('wallet2 is migrated successfully with out the BlacklistController', () => {
it('should delete BlacklistController key', async () => {
const migratedData = await migration21.migrate(wallet2);
expect(migratedData.meta.version).toStrictEqual(21);
expect(!migratedData.data.BlacklistController).toStrictEqual(true);
expect(!migratedData.data.RecentBlocks).toStrictEqual(true);
});
});