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.
35 lines
697 B
35 lines
697 B
7 years ago
|
import assert from 'assert'
|
||
|
import {
|
||
|
sendAmountIsInError,
|
||
|
} from '../send-amount-row.selectors.js'
|
||
|
|
||
|
describe('send-amount-row selectors', () => {
|
||
|
|
||
|
describe('sendAmountIsInError()', () => {
|
||
|
it('should return true if send.errors.amount is truthy', () => {
|
||
|
const state = {
|
||
|
send: {
|
||
|
errors: {
|
||
|
amount: 'abc',
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
assert.equal(sendAmountIsInError(state), true)
|
||
|
})
|
||
|
|
||
|
it('should return false if send.errors.amount is falsy', () => {
|
||
|
const state = {
|
||
|
send: {
|
||
|
errors: {
|
||
|
amount: null,
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
assert.equal(sendAmountIsInError(state), false)
|
||
|
})
|
||
|
})
|
||
|
|
||
|
})
|