aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/migrations-test.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-04-14 03:50:20 +0800
committerDan Finlay <dan@danfinlay.com>2016-04-14 03:50:20 +0800
commit2ed127b51d45eda5cb55a87494fc555fb184728a (patch)
treeda956107e061f2976d0918791b73d5cab4b347fa /test/unit/migrations-test.js
parentfe3ba9dc2f49f4232568f0ded4a8b850336cabdf (diff)
parente0ee4365cbd10d478f9424dd1133d4330e6f4697 (diff)
downloadtangerine-wallet-browser-2ed127b51d45eda5cb55a87494fc555fb184728a.tar
tangerine-wallet-browser-2ed127b51d45eda5cb55a87494fc555fb184728a.tar.gz
tangerine-wallet-browser-2ed127b51d45eda5cb55a87494fc555fb184728a.tar.bz2
tangerine-wallet-browser-2ed127b51d45eda5cb55a87494fc555fb184728a.tar.lz
tangerine-wallet-browser-2ed127b51d45eda5cb55a87494fc555fb184728a.tar.xz
tangerine-wallet-browser-2ed127b51d45eda5cb55a87494fc555fb184728a.tar.zst
tangerine-wallet-browser-2ed127b51d45eda5cb55a87494fc555fb184728a.zip
Merge branch 'master' of github.com:MetaMask/metamask-plugin
Diffstat (limited to 'test/unit/migrations-test.js')
-rw-r--r--test/unit/migrations-test.js14
1 files changed, 14 insertions, 0 deletions
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')
+
+})
+