aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2017-05-16 14:56:13 +0800
committerkumavis <aaron@kumavis.me>2017-05-16 14:56:13 +0800
commit28aba6e9dea52b66534d6ecb9713a7d20947c57c (patch)
treee36c719bb5dad497460d443d0b180cfbaf37578d /test
parent01b6d9c374476bd8c59fc0ba342639ddcea7ca8d (diff)
downloadtangerine-wallet-browser-28aba6e9dea52b66534d6ecb9713a7d20947c57c.tar
tangerine-wallet-browser-28aba6e9dea52b66534d6ecb9713a7d20947c57c.tar.gz
tangerine-wallet-browser-28aba6e9dea52b66534d6ecb9713a7d20947c57c.tar.bz2
tangerine-wallet-browser-28aba6e9dea52b66534d6ecb9713a7d20947c57c.tar.lz
tangerine-wallet-browser-28aba6e9dea52b66534d6ecb9713a7d20947c57c.tar.xz
tangerine-wallet-browser-28aba6e9dea52b66534d6ecb9713a7d20947c57c.tar.zst
tangerine-wallet-browser-28aba6e9dea52b66534d6ecb9713a7d20947c57c.zip
migration 13 - change provider from testnet to ropsten
Diffstat (limited to 'test')
-rw-r--r--test/unit/migrations-test.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/unit/migrations-test.js b/test/unit/migrations-test.js
index 324e4d056..5bad25a45 100644
--- a/test/unit/migrations-test.js
+++ b/test/unit/migrations-test.js
@@ -16,6 +16,7 @@ const migration9 = require(path.join('..', '..', 'app', 'scripts', 'migrations',
const migration10 = require(path.join('..', '..', 'app', 'scripts', 'migrations', '010'))
const migration11 = require(path.join('..', '..', 'app', 'scripts', 'migrations', '011'))
const migration12 = require(path.join('..', '..', 'app', 'scripts', 'migrations', '012'))
+const migration13 = require(path.join('..', '..', 'app', 'scripts', 'migrations', '013'))
const oldTestRpc = 'https://rawtestrpc.metamask.io/'
@@ -97,6 +98,11 @@ describe('wallet1 is migrated successfully', () => {
}).then((twelfthResult) => {
assert.equal(twelfthResult.data.NoticeController.noticesList[0].body, '', 'notices that have been read should have an empty body.')
assert.equal(twelfthResult.data.NoticeController.noticesList[1].body, 'nonempty', 'notices that have not been read should not have an empty body.')
+
+ assert.equal(twelfthResult.data.config.provider.type, 'testnet', 'network is originally testnet.')
+ return migration13.migrate(twelfthResult)
+ }).then((thirteenthResult) => {
+ assert.equal(thirteenthResult.data.config.provider.type, 'ropsten', 'network has been changed to ropsten.')
})
})
})