aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/__tests__/components/FlowTable/FlowRowSpec.js
blob: 7dfc1dcd0eb9f2a177b46c7a7e70d774292ffd4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import React from 'react'
import renderer from 'react-test-renderer'
import FlowRow from '../../../components/FlowTable/FlowRow'
import { TFlow } from '../../ducks/tutils'

describe('FlowRow Component', () => {
    let tFlow = new TFlow(),
        selectFn = jest.fn(),
        flowRow = renderer.create(<FlowRow flow={tFlow} onSelect={selectFn}/>),
        tree = flowRow.toJSON()

    it('should render correctly', () => {
        expect(tree).toMatchSnapshot()
    })

    it('should handle click', () => {
        tree.props.onClick()
        expect(selectFn).toBeCalledWith(tFlow.id)
    })

})