explorer - fix ropsten explorer link tests

feature/default_network_editable
kumavis 8 years ago
parent e4543bc104
commit 918f388463
  1. 12
      test/unit/account-link-test.js
  2. 9
      test/unit/explorer-link-test.js

@ -3,15 +3,15 @@ var linkGen = require('../../ui/lib/account-link')
describe('account-link', function() { describe('account-link', function() {
it('adds morden prefix to morden test network', function() { it('adds ropsten prefix to ropsten test network', function() {
var result = linkGen('account', '2') var result = linkGen('account', '3')
assert.notEqual(result.indexOf('morden'), -1, 'morden included') assert.notEqual(result.indexOf('ropsten'), -1, 'ropsten included')
assert.notEqual(result.indexOf('account'), -1, 'account included') assert.notEqual(result.indexOf('account'), -1, 'account included')
}) })
it('adds testnet prefix to ropsten test network', function() { it('adds kovan prefix to kovan test network', function() {
var result = linkGen('account', '3') var result = linkGen('account', '42')
assert.notEqual(result.indexOf('ropsten'), -1, 'ropsten included') assert.notEqual(result.indexOf('kovan'), -1, 'kovan included')
assert.notEqual(result.indexOf('account'), -1, 'account included') assert.notEqual(result.indexOf('account'), -1, 'account included')
}) })

@ -3,9 +3,14 @@ var linkGen = require('../../ui/lib/explorer-link')
describe('explorer-link', function() { 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') 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')
}) })
}) })

Loading…
Cancel
Save