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.
24 lines
704 B
24 lines
704 B
import assert from 'assert'
|
|
import proxyquire from 'proxyquire'
|
|
|
|
const {
|
|
isSendFormInError,
|
|
} = proxyquire('../send-footer.selectors', {
|
|
'../send.selectors': {
|
|
getSendErrors: (mockState) => mockState.errors,
|
|
},
|
|
})
|
|
|
|
describe('send-footer selectors', () => {
|
|
|
|
describe('getTitleKey()', () => {
|
|
it('should return true if any of the values of the object returned by getSendErrors are truthy', () => {
|
|
assert.equal(isSendFormInError({ errors: { a: 'abc', b: false} }), true)
|
|
})
|
|
|
|
it('should return false if all of the values of the object returned by getSendErrors are falsy', () => {
|
|
assert.equal(isSendFormInError({ errors: { a: false, b: null} }), false)
|
|
})
|
|
})
|
|
|
|
})
|
|
|