1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-25 12:52:33 +02:00
metamask-extension/test/unit/migrations/021-test.js
Erik Marks 76a2a9bb8b
@metamask/eslint config@5.0.0 (#10358)
* @metamask/eslint-config@5.0.0
* Update eslintrc and prettierrc
* yarn lint:fix
2021-02-04 10:15:23 -08:00

18 lines
587 B
JavaScript

import assert from 'assert';
import wallet2 from '../../lib/migrations/002.json';
import migration21 from '../../../app/scripts/migrations/021';
describe('wallet2 is migrated successfully with out the BlacklistController', function () {
it('should delete BlacklistController key', function (done) {
migration21
.migrate(wallet2)
.then((migratedData) => {
assert.equal(migratedData.meta.version, 21);
assert(!migratedData.data.BlacklistController);
assert(!migratedData.data.RecentBlocks);
done();
})
.catch(done);
});
});