aboutsummaryrefslogblamecommitdiffstats
path: root/ui/app/pages/send/send-content/send-amount-row/tests/send-amount-row-selectors.test.js
blob: 4672cb8a7d450040c69ca9ac003be29b82d83a6f (plain) (tree)

































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

})