aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send/send-content/send-row-wrapper/send-row-warning-message/tests/send-row-warning-message-container.test.js
blob: 225bf056c04b3cad6af8e6d7d4b3205e905ad162 (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
import assert from 'assert'
import proxyquire from 'proxyquire'

let mapStateToProps

proxyquire('../send-row-warning-message.container.js', {
  'react-redux': {
    connect: (ms, md) => {
      mapStateToProps = ms
      return () => ({})
    },
  },
  '../../../send.selectors': { getSendWarnings: (s) => `mockWarnings:${s}` },
})

describe('send-row-warning-message container', () => {

  describe('mapStateToProps()', () => {

    it('should map the correct properties to props', () => {
      assert.deepEqual(mapStateToProps('mockState', { warningType: 'someType' }), {
        warnings: 'mockWarnings:mockState',
        warningType: 'someType' })
    })

  })

})