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.
32 lines
663 B
32 lines
663 B
6 years ago
|
import assert from 'assert'
|
||
|
import proxyquire from 'proxyquire'
|
||
|
|
||
|
let mapStateToProps
|
||
|
|
||
|
proxyquire('../user-preferenced-token-input.container.js', {
|
||
|
'react-redux': {
|
||
|
connect: ms => {
|
||
|
mapStateToProps = ms
|
||
|
return () => ({})
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
|
||
|
describe('UserPreferencedTokenInput container', () => {
|
||
|
describe('mapStateToProps()', () => {
|
||
|
it('should return the correct props', () => {
|
||
|
const mockState = {
|
||
|
metamask: {
|
||
|
preferences: {
|
||
|
useETHAsPrimaryCurrency: true,
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
assert.deepEqual(mapStateToProps(mockState), {
|
||
|
useETHAsPrimaryCurrency: true,
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
})
|