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.
26 lines
540 B
26 lines
540 B
5 years ago
|
import assert from 'assert'
|
||
|
import selectors from '../selectors.js'
|
||
|
const {
|
||
|
getAddressBook,
|
||
|
} = selectors
|
||
|
import mockState from './selectors-test-data'
|
||
|
|
||
|
describe('selectors', () => {
|
||
|
|
||
|
describe('getAddressBook()', () => {
|
||
|
it('should return the address book', () => {
|
||
|
assert.deepEqual(
|
||
|
getAddressBook(mockState),
|
||
|
[
|
||
|
{
|
||
|
address: '0x06195827297c7a80a443b6894d3bdb8824b43896',
|
||
|
name: 'Address Book Account 1',
|
||
|
chainId: '3',
|
||
|
},
|
||
|
],
|
||
|
)
|
||
|
})
|
||
|
})
|
||
|
|
||
|
})
|