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
x
11
11
1
import React from "react";
2
import { Link } from "react-router-dom";
3
import { useCart } from "react-use-cart";
4
import PropTypes from "prop-types";
5
6
import handleQuantityChange from "../../logic/product/handleQuantityChange";
7
8
function AddToCart(props) {
9
const {product, styles, loading} = props;
10
const { addItem, inCart, getItem, updateItemQuantity } = useCart();
11
const productInCart = getItem(product.id);
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
1
22
22
1
import React from "react";
2
import { render, screen } from "@testing-library/react";
3
import AddToCart from "../AddToCart";
4
import { MemoryRouter as Router } from "react-router-dom";
5
describe("get item is not a function", () => {
6
const product = {
7
name: "test name",
8
imgUrl: "test image",
9
price: 555,
10
shipping: 1000,
11
id: 55
12
};
13
const styles = []
14
15
16
beforeEach(() => {
17
render(
18
<Router>
19
<AddToCart product={product} styles={styles}/>
20
</Router>
21
);
22
});
Advertisement
Answer
You are missing CartProvider
:
JavaScript
1
12
12
1
{ }
2
3
beforeEach(() => {
4
render(
5
<CartProvider>
6
<Router>
7
<AddToCart product={product} styles={styles}/>
8
</Router>
9
</CartProvider>
10
);
11
});
12