Skip to content

Instantly share code, notes, and snippets.

@binario200
binario200 / CheckboxWithLabel.js
Last active April 14, 2022 08:48
How to test react components with Jest
import React from 'react';
export default class CheckboxWithLabel extends React.Component {
constructor(props) {
super(props);
this.state = {isChecked: false};
// bind manually because React class components don't auto-bind
// http://facebook.github.io/react/blog/2015/01/27/react-v0.13.0-beta-1.html#autobinding
this.onChange = this.onChange.bind(this);