aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send/send-content/send-amount-row/tests/send-amount-row-selectors.test.js
blob: 4672cb8a7d450040c69ca9ac003be29b82d83a6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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)
    })
  })

})