From e0caeae06ded5d0e7c74b5e174583fae378e7123 Mon Sep 17 00:00:00 2001 From: frankiebee Date: Tue, 30 Jan 2018 15:03:42 -0800 Subject: test for migration 021 --- test/unit/migrations/021-test.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test/unit/migrations/021-test.js (limited to 'test/unit') diff --git a/test/unit/migrations/021-test.js b/test/unit/migrations/021-test.js new file mode 100644 index 000000000..9d1066c13 --- /dev/null +++ b/test/unit/migrations/021-test.js @@ -0,0 +1,15 @@ +const assert = require('assert') + +const wallet2 = require('../../lib/migrations/002.json') +const migration21 = require('../../../app/scripts/migrations/021') + +describe('wallet2 is migrated successfully with out the BlacklistController', () => { + it('should delete BlacklistController key', (done) => { + migration21.migrate(wallet2) + .then((migratedData) => { + assert.equal(migratedData.meta.version, 21) + assert(!migratedData.data.BlacklistController) + done() + }).catch(done) + }) +}) -- cgit v1.2.3