mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 03:20:23 +01:00
4f3fc95d50
* Use @metamask/eslint-config@1.1.0 * Use eslint-plugin-mocha@6.2.2 * Mark root ESLint config as root * Update Mocha ESLint rules with shared ESLint config
27 lines
600 B
JavaScript
27 lines
600 B
JavaScript
import assert from 'assert'
|
|
import proxyquire from 'proxyquire'
|
|
|
|
let mapStateToProps
|
|
|
|
proxyquire('../send-from-row.container.js', {
|
|
'react-redux': {
|
|
connect: ms => {
|
|
mapStateToProps = ms
|
|
return () => ({})
|
|
},
|
|
},
|
|
'../../send.selectors.js': {
|
|
getSendFromObject: (s) => `mockFrom:${s}`,
|
|
},
|
|
})
|
|
|
|
describe('send-from-row container', function () {
|
|
describe('mapStateToProps()', function () {
|
|
it('should map the correct properties to props', function () {
|
|
assert.deepEqual(mapStateToProps('mockState'), {
|
|
from: 'mockFrom:mockState',
|
|
})
|
|
})
|
|
})
|
|
})
|