Skip to content
Advertisement

TypeError: getItem is not a function when testing a component with node module hooks

I am learning React, and got stuck in testing one of my components. I use react-use-cart to manage the cart, this is how code looks

JavaScript

The test breaks at “productInCart = getItem(product.id)” saying ” TypeError: getItem is not a function”. I’ve been stuck at this for several days, and would really appreciate some help, it’s my first time asking a question, so if you need any more info let me know, thank you.

Also about the test, test breaks on the render stage

JavaScript

Advertisement

Answer

You are missing CartProvider:

JavaScript
Advertisement