mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
35 lines
857 B
JavaScript
35 lines
857 B
JavaScript
import assert from 'assert'
|
|
import proxyquire from 'proxyquire'
|
|
|
|
let mapStateToProps
|
|
|
|
proxyquire('../account-list-item.container.js', {
|
|
'react-redux': {
|
|
connect: (ms, md) => {
|
|
mapStateToProps = ms
|
|
return () => ({})
|
|
},
|
|
},
|
|
'../send.selectors.js': {
|
|
getConversionRate: (s) => `mockConversionRate:${s}`,
|
|
getCurrentCurrency: (s) => `mockCurrentCurrency:${s}`,
|
|
getNativeCurrency: (s) => `mockNativeCurrency:${s}`,
|
|
},
|
|
})
|
|
|
|
describe('account-list-item container', () => {
|
|
|
|
describe('mapStateToProps()', () => {
|
|
|
|
it('should map the correct properties to props', () => {
|
|
assert.deepEqual(mapStateToProps('mockState'), {
|
|
conversionRate: 'mockConversionRate:mockState',
|
|
currentCurrency: 'mockCurrentCurrency:mockState',
|
|
nativeCurrency: 'mockNativeCurrency:mockState',
|
|
})
|
|
})
|
|
|
|
})
|
|
|
|
})
|