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.
55 lines
1.2 KiB
55 lines
1.2 KiB
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 () => ({})
|
|
},
|
|
},
|
|
'../../../actions': actionSpies,
|
|
'../../../selectors': { getSelectedToken: (s) => `mockSelectedToken:${s}` },
|
|
})
|
|
|
|
describe('send-header container', () => {
|
|
|
|
describe('mapStateToProps()', () => {
|
|
|
|
it('should map the correct properties to props', () => {
|
|
assert.deepEqual(mapStateToProps('mockState'), {
|
|
isToken: true,
|
|
})
|
|
})
|
|
|
|
})
|
|
|
|
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)
|
|
})
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|