aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/migrations-test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/migrations-test.js')
-rw-r--r--test/unit/migrations-test.js14
1 files changed, 11 insertions, 3 deletions
diff --git a/test/unit/migrations-test.js b/test/unit/migrations-test.js
index 092c0eccd..4170b8e62 100644
--- a/test/unit/migrations-test.js
+++ b/test/unit/migrations-test.js
@@ -3,13 +3,21 @@ var path = require('path')
var wallet1 = require(path.join('..', 'lib', 'migrations', '001.json'))
var migration2 = require(path.join('..', '..', 'app', 'scripts', 'migrations', '002'))
+var migration3 = require(path.join('..', '..', 'app', 'scripts', 'migrations', '003'))
describe('wallet1 is migrated successfully', function() {
it('should convert etherscan provider', function(done) {
- var result = migration2.migrate(wallet1.data)
- assert.equal(result.config.provider.type, 'rpc', 'provider should be rpc')
- assert.equal(result.config.provider.rpcTarget, 'https://rpc.metamask.io/', 'provider should be our rpc')
+
+ var firstResult = migration2.migrate(wallet1.data)
+ assert.equal(firstResult.config.provider.type, 'rpc', 'provider should be rpc')
+ assert.equal(firstResult.config.provider.rpcTarget, 'https://rpc.metamask.io/', 'provider should be our rpc')
+
+ var oldTestRpc = 'https://rawtestrpc.metamask.io/'
+ firstResult.config.provider.rpcTarget = oldTestRpc
+ var secondResult = migration3.migrate(firstResult)
+ assert.equal(firstResult.config.provider.rpcTarget, 'https://testrpc.metamask.io/', 'provider should be our rpc')
+
done()
})
})