aboutsummaryrefslogtreecommitdiffstats
path: root/test/react/__snapshots__/Checkbox.spec.js.snap
blob: fa6239bd865c3af77856634cda460a6406b9198b (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Checkbox Checkbox - disabled 1`] = `
<div
  className="sdc-checkbox "
>
  <label>
    <input
      checked={false}
      className="sdc-checkbox__input"
      data-test-id={undefined}
      disabled={true}
      name={undefined}
      onChange={[Function]}
      type="checkbox"
      value={undefined}
    />
    <span
      className="sdc-checkbox__label"
    >
      This is the checkbox label
    </span>
  </label>
</div>
`;

exports[`Checkbox Checkbox - unchecked 1`] = `
<div
  className="sdc-checkbox "
>
  <label>
    <input
      checked={false}
      className="sdc-checkbox__input"
      data-test-id={undefined}
      disabled={undefined}
      name={undefined}
      onChange={[Function]}
      type="checkbox"
      value={undefined}
    />
    <span
      className="sdc-checkbox__label"
    >
      This is the checkbox label
    </span>
  </label>
</div>
`;