mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
19 lines
630 B
JavaScript
19 lines
630 B
JavaScript
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, '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')
|
|
})
|
|
|
|
})
|