diff options
Diffstat (limited to 'test/react/__snapshots__/Checkbox.spec.js.snap')
-rw-r--r-- | test/react/__snapshots__/Checkbox.spec.js.snap | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/test/react/__snapshots__/Checkbox.spec.js.snap b/test/react/__snapshots__/Checkbox.spec.js.snap deleted file mode 100644 index fa6239b..0000000 --- a/test/react/__snapshots__/Checkbox.spec.js.snap +++ /dev/null @@ -1,49 +0,0 @@ -// 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> -`; |