From eddaf71e31a2267616c2665c76113bfb6c589bcb Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Tue, 12 Apr 2016 14:16:39 -0700 Subject: Migrate etherscan providers to our RPC --- test/unit/migrations-test.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 test/unit/migrations-test.js (limited to 'test/unit') diff --git a/test/unit/migrations-test.js b/test/unit/migrations-test.js new file mode 100644 index 000000000..3a3213ac5 --- /dev/null +++ b/test/unit/migrations-test.js @@ -0,0 +1,14 @@ +var test = require('tape') +var path = require('path') + +var wallet1 = require(path.join('..', 'lib', 'migrations', '001.json')) +var migration2 = require(path.join('..', '..', 'app', 'scripts', 'migrations', '002')) + +test('wallet1 is migrated successfully', function(t) { + + var result = migration2.migrate(wallet1.data) + t.equal(result.config.provider.type, 'rpc', 'provider should be rpc') + t.equal(result.config.provider.rpcTarget, 'https://rpc.metamask.io/', 'provider should be our rpc') + +}) + -- cgit v1.2.3