Error in Jest Test, it wants me to test lines

I am new to testing. I have an error on 3 lines in my react project, but I am not sure what to test for. I have done a few tutorials and understanding how to run a test. However on this project, it wants me to test:

  1. setToggle(!toggle);
  2. setActive(!active);
  3. the render
    But I am not sure what I kind of tests I am suppose to run. How do I know what type of test to run based on the the line info they give me?
    enter image description here