aboutsummaryrefslogtreecommitdiffstats
path: root/test/react/Checklist.spec.js
blob: a3409ad452a97a097bf2af09882d03d4dc9d6835 (plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import React from 'react';
import Checklist from '../../src/react/Checklist.js';

import renderer from 'react-test-renderer';

const items = [
    {
        label: 'apple',
        value: 'apple',
        dataTestId: 'apple',
        checked: true
    },
    {
        label: 'banana',
        value: 'banana',
        dataTestId: 'banana',
        checked: false
    },
    {
        label: 'orange',
        value: 'orange',
        dataTestId: 'orange',
        checked: true
    }
];

const itemsDisabled = [
    {
        label: 'apple',
        value: 'apple',
        dataTestId: 'apple',
        checked: true,
        disabled: true
    },
    {
        label: 'banana',
        value: 'banana',
        dataTestId: 'banana',
        checked: false,
        disabled: true
    },
    {
        label: 'orange',
        value: 'orange',
        dataTestId: 'orange',
        checked: false
    }
];


describe('Checklist', () => {
    test('Checklist - Default ', () => {
        const checklist = renderer.create(<Checklist items={items} onChange={() => { }} />).toJSON();
        expect(checklist).toMatchSnapshot();
    });

    test('Checklist - With disabled items ', () => {
        const checklist = renderer.create(<Checklist items={itemsDisabled} onChange={() => { }} />).toJSON();
        expect(checklist).toMatchSnapshot();
    });



});