1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-25 12:52:33 +02:00
metamask-extension/ui/app/components/send_/send-footer/tests/send-footer-selectors.test.js

25 lines
704 B
JavaScript
Raw Normal View History

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)
})
})
})