aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/account-link-test.js
blob: 5be3a072e5b7bb4a4a578301d95adf291521741c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
var assert = require('assert')
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, 'morden 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('ropsten'), -1, 'ropsten included')
    assert.notEqual(result.indexOf('account'), -1, 'account included')
  })

})