1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-25 21:00:23 +02:00
metamask-extension/test/unit/migrations/021-test.js

16 lines
563 B
JavaScript
Raw Normal View History

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