mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
e78e82205a
* 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
12 lines
506 B
JavaScript
12 lines
506 B
JavaScript
import wallet2 from '../../../test/lib/migrations/002.json';
|
|
import migration21 from './021';
|
|
|
|
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);
|
|
});
|
|
});
|