apjames93/rff-wrapper

View on GitHub
src/lib/components/HTMLCheckbox/__snapshots__/HTMLCheckbox.test.js.snap

Summary

Maintainability
Test Coverage
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`<HTMLCheckbox /> snapshot 1`] = `
<form
  onSubmit={[Function]}
>
  <label
    htmlFor="cool"
    style={
      Object {
        "display": "flex",
        "flexDirection": "column",
      }
    }
  >
    apples
    <input
      checked={false}
      disabled={false}
      id="cool"
      name="cool"
      onBlur={[Function]}
      onChange={[Function]}
      onFocus={[Function]}
      type="checkbox"
      value={null}
    />
  </label>
</form>
`;