Solution to the Exercise

Learn more about the nuances of testing and fix the failing test from the last lesson.

We'll cover the following...

Solution

As you recall, we wrote a test that renders the TaskInput component. We also tried entering some text into it. It then validated that an onSubmit callback was called.

Firstly, we need somewhere to store the input value. Let’s use the state for that:

const [value, setValue] = useState('');

And the handler function for the input:

const handleChange = (event) =>
...