mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
624139a00f
* Remove unused sendWarnings The send warnings state and associated component is no longer used anywhere. * Remove unused subtitleParams The `subtitleParams` SendHeader prop was being ignored. It has been removed, along with associated selectors and tests.
58 lines
1.2 KiB
JavaScript
58 lines
1.2 KiB
JavaScript
import assert from 'assert'
|
|
import proxyquire from 'proxyquire'
|
|
import sinon from 'sinon'
|
|
|
|
let mapStateToProps
|
|
let mapDispatchToProps
|
|
|
|
const actionSpies = {
|
|
clearSend: sinon.spy(),
|
|
}
|
|
|
|
proxyquire('../send-header.container.js', {
|
|
'react-redux': {
|
|
connect: (ms, md) => {
|
|
mapStateToProps = ms
|
|
mapDispatchToProps = md
|
|
return () => ({})
|
|
},
|
|
},
|
|
'../../../store/actions': actionSpies,
|
|
'./send-header.selectors': {
|
|
getTitleKey: (s) => `mockTitleKey:${s}`,
|
|
},
|
|
})
|
|
|
|
describe('send-header container', () => {
|
|
|
|
describe('mapStateToProps()', () => {
|
|
|
|
it('should map the correct properties to props', () => {
|
|
assert.deepEqual(mapStateToProps('mockState'), {
|
|
titleKey: 'mockTitleKey:mockState',
|
|
})
|
|
})
|
|
|
|
})
|
|
|
|
describe('mapDispatchToProps()', () => {
|
|
let dispatchSpy
|
|
let mapDispatchToPropsObject
|
|
|
|
beforeEach(() => {
|
|
dispatchSpy = sinon.spy()
|
|
mapDispatchToPropsObject = mapDispatchToProps(dispatchSpy)
|
|
})
|
|
|
|
describe('clearSend()', () => {
|
|
it('should dispatch an action', () => {
|
|
mapDispatchToPropsObject.clearSend()
|
|
assert(dispatchSpy.calledOnce)
|
|
assert(actionSpies.clearSend.calledOnce)
|
|
})
|
|
})
|
|
|
|
})
|
|
|
|
})
|