Conversation
mateacademy-ai-mentor
left a comment
There was a problem hiding this comment.
Review Summary
Great job! Your tests are thorough and meet all the task requirements. The only issues are minor typos in the test descriptions, which do not affect functionality. Consider fixing them for clarity in the future, but your submission is complete and correct. Keep up the good work! 🚀
✨ Please rate this review in the Platform's notification center1. I will be grateful for your feedback! ✨
Footnotes
src/reduce.test.js
Outdated
| expect(callback).toHaveBeenCalledTimes(nums.length); | ||
| }); | ||
|
|
||
| it('should work witout initial value', () => { |
There was a problem hiding this comment.
There is a typo in the test description: 'should work witout initial value' should be 'should work without initial value'. This is a minor issue related to clarity.
src/reduce.test.js
Outdated
| expect(result).toBe(10); | ||
| }); | ||
|
|
||
| it('should work witout initial array', () => { |
There was a problem hiding this comment.
There is a typo in the test description: 'should work witout initial array' should be 'should work without initial array'. This is a minor issue related to clarity.
No description provided.