You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
482 B
15 lines
482 B
var assert = require('assert')
|
|
var linkGen = require('../../ui/lib/explorer-link')
|
|
|
|
describe('explorer-link', function () {
|
|
it('adds ropsten prefix to ropsten test network', function () {
|
|
var result = linkGen('hash', '3')
|
|
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')
|
|
})
|
|
|
|
})
|
|
|