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.
28 lines
587 B
28 lines
587 B
6 years ago
|
import assert from 'assert'
|
||
|
import proxyquire from 'proxyquire'
|
||
|
|
||
|
let mapStateToProps
|
||
|
|
||
|
proxyquire('../transaction-activity-log.container.js', {
|
||
|
'react-redux': {
|
||
|
connect: ms => {
|
||
|
mapStateToProps = ms
|
||
|
return () => ({})
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
|
||
|
describe('TransactionActivityLog container', () => {
|
||
|
describe('mapStateToProps()', () => {
|
||
|
it('should return the correct props', () => {
|
||
|
const mockState = {
|
||
|
metamask: {
|
||
|
conversionRate: 280.45,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
assert.deepEqual(mapStateToProps(mockState), { conversionRate: 280.45 })
|
||
|
})
|
||
|
})
|
||
|
})
|