mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
b3d78ed8a1
Revert accidentally changed constants. Require defaults in ens-input, gas-fee-display and confirm screens.
35 lines
697 B
JavaScript
35 lines
697 B
JavaScript
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)
|
|
})
|
|
})
|
|
|
|
})
|