mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
bd9d89826c
Visible at the end of the transaction list, or if no transactions are listed, displayed right after the `No Transactions` message.
13 lines
378 B
JavaScript
13 lines
378 B
JavaScript
var assert = require('assert')
|
|
var linkGen = require('../../ui/lib/account-link')
|
|
|
|
describe('account-link', function() {
|
|
|
|
it('adds testnet prefix to morden test network', function() {
|
|
var result = linkGen('account', '2')
|
|
assert.notEqual(result.indexOf('testnet'), -1, 'testnet injected')
|
|
assert.notEqual(result.indexOf('account'), -1, 'account included')
|
|
})
|
|
|
|
})
|