aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDan Finlay <flyswatter@users.noreply.github.com>2017-03-28 02:45:05 +0800
committerGitHub <noreply@github.com>2017-03-28 02:45:05 +0800
commit4819f3a91d8ebb46faf764168998def9ec06f1f9 (patch)
tree86ad06f03a3cd914a3c2705a01261a78554fd02d /test
parent1c956bdb6209ba436a0de99a0f4440696935bd99 (diff)
parent918f388463d4afaf6429f6432bdd364b780f8d6c (diff)
downloadtangerine-wallet-browser-4819f3a91d8ebb46faf764168998def9ec06f1f9.tar.gz
tangerine-wallet-browser-4819f3a91d8ebb46faf764168998def9ec06f1f9.tar.zst
tangerine-wallet-browser-4819f3a91d8ebb46faf764168998def9ec06f1f9.zip
Merge pull request #1265 from MetaMask/ropsten-fix
Block explorer - fix ropsten links
Diffstat (limited to 'test')
-rw-r--r--test/unit/account-link-test.js12
-rw-r--r--test/unit/explorer-link-test.js9
2 files changed, 13 insertions, 8 deletions
diff --git a/test/unit/account-link-test.js b/test/unit/account-link-test.js
index 4ea12e002..803a70f37 100644
--- a/test/unit/account-link-test.js
+++ b/test/unit/account-link-test.js
@@ -3,15 +3,15 @@ var linkGen = require('../../ui/lib/account-link')
describe('account-link', function() {
- it('adds morden prefix to morden test network', function() {
- var result = linkGen('account', '2')
- assert.notEqual(result.indexOf('morden'), -1, 'testnet included')
+ it('adds ropsten prefix to ropsten test network', function() {
+ var result = linkGen('account', '3')
+ assert.notEqual(result.indexOf('ropsten'), -1, 'ropsten included')
assert.notEqual(result.indexOf('account'), -1, 'account included')
})
- it('adds testnet prefix to ropsten test network', function() {
- var result = linkGen('account', '3')
- assert.notEqual(result.indexOf('testnet'), -1, 'testnet included')
+ it('adds kovan prefix to kovan test network', function() {
+ var result = linkGen('account', '42')
+ assert.notEqual(result.indexOf('kovan'), -1, 'kovan included')
assert.notEqual(result.indexOf('account'), -1, 'account included')
})
diff --git a/test/unit/explorer-link-test.js b/test/unit/explorer-link-test.js
index 8aa58bff9..4f0230c2c 100644
--- a/test/unit/explorer-link-test.js
+++ b/test/unit/explorer-link-test.js
@@ -3,9 +3,14 @@ var linkGen = require('../../ui/lib/explorer-link')
describe('explorer-link', function() {
- it('adds testnet prefix to morden test network', function() {
+ it('adds ropsten prefix to ropsten test network', function() {
var result = linkGen('hash', '3')
- assert.notEqual(result.indexOf('testnet'), -1, 'testnet injected')
+ assert.notEqual(result.indexOf('ropsten'), -1, 'ropsten injected')
+ })
+
+ it('adds kovan prefix to kovan test network', function() {
+ var result = linkGen('hash', '42')
+ assert.notEqual(result.indexOf('kovan'), -1, 'kovan injected')
})
})