mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 03:20:23 +01:00
4f3fc95d50
* Use @metamask/eslint-config@1.1.0 * Use eslint-plugin-mocha@6.2.2 * Mark root ESLint config as root * Update Mocha ESLint rules with shared ESLint config
35 lines
721 B
JavaScript
35 lines
721 B
JavaScript
import assert from 'assert'
|
|
import {
|
|
sendAmountIsInError,
|
|
} from '../send-amount-row.selectors.js'
|
|
|
|
describe('send-amount-row selectors', function () {
|
|
|
|
describe('sendAmountIsInError()', function () {
|
|
it('should return true if send.errors.amount is truthy', function () {
|
|
const state = {
|
|
send: {
|
|
errors: {
|
|
amount: 'abc',
|
|
},
|
|
},
|
|
}
|
|
|
|
assert.equal(sendAmountIsInError(state), true)
|
|
})
|
|
|
|
it('should return false if send.errors.amount is falsy', function () {
|
|
const state = {
|
|
send: {
|
|
errors: {
|
|
amount: null,
|
|
},
|
|
},
|
|
}
|
|
|
|
assert.equal(sendAmountIsInError(state), false)
|
|
})
|
|
})
|
|
|
|
})
|