This is a small one, but having accurately descriptive naming conventions can be really helpful for code readability.
In addToDo.test.js one of the pieces of test data is named testObj, but is in fact an array. This made it harder for me to understand what was going on - perhaps testArr or something else would be better?
This is a small one, but having accurately descriptive naming conventions can be really helpful for code readability.
In addToDo.test.js one of the pieces of test data is named
testObj, but is in fact an array. This made it harder for me to understand what was going on - perhapstestArror something else would be better?