mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
19 lines
626 B
JavaScript
19 lines
626 B
JavaScript
var assert = require('assert')
|
|
var linkGen = require('../../ui/lib/account-link')
|
|
|
|
describe('account-link', function() {
|
|
|
|
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 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')
|
|
})
|
|
|
|
})
|