aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2016-11-23 05:18:43 +0800
committerGitHub <noreply@github.com>2016-11-23 05:18:43 +0800
commite14efa8f175e17bd671e0c38b3e743716ea4aa19 (patch)
tree21db5d12547010031c30c77b498551f390109dd0 /test
parent4669f262e2bad5052aac804c3cff8a8c5ee825e3 (diff)
parentc4056a861a4a383b3bea18225e71435bdf75f6d0 (diff)
downloadtangerine-wallet-browser-e14efa8f175e17bd671e0c38b3e743716ea4aa19.tar.gz
tangerine-wallet-browser-e14efa8f175e17bd671e0c38b3e743716ea4aa19.tar.zst
tangerine-wallet-browser-e14efa8f175e17bd671e0c38b3e743716ea4aa19.zip
Merge pull request #858 from MetaMask/i842-WaitForSeedWord
I842 wait for seed word
Diffstat (limited to 'test')
-rw-r--r--test/unit/account-link-test.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/test/unit/account-link-test.js b/test/unit/account-link-test.js
index 39889b6be..4ea12e002 100644
--- a/test/unit/account-link-test.js
+++ b/test/unit/account-link-test.js
@@ -3,9 +3,15 @@ var linkGen = require('../../ui/lib/account-link')
describe('account-link', function() {
- it('adds testnet prefix to morden test network', function() {
+ it('adds morden prefix to morden test network', function() {
var result = linkGen('account', '2')
- assert.notEqual(result.indexOf('testnet'), -1, 'testnet injected')
+ assert.notEqual(result.indexOf('morden'), -1, 'testnet 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')
assert.notEqual(result.indexOf('account'), -1, 'account included')
})