reactjs - Jest 和 Enzyme 中的 "Cannot read property includes of undefined"错误

标签 reactjs tdd enzyme jestjs

我有一个用于呈现复选框的 React 组件。组件代码具有如下所示的功能:

const generateCheckboxes = (array, filterType) => {
        return array.map((filter, i) => {
            if (!isNullOrUndefined(filter) && filter !== "") {
                const applied = props.appliedFilterList[filterType].includes(filter);
                console.log("yes", props.appliedFilterList[filterType]);
                return (
                    <Row key={i} noLine={i === 0}>
                        <Checkbox checked={applied} onClick={() => props.toggleFilter(filterType, filter)}>
                            {filter}
                        </Checkbox>
                    </Row>
                );
            }
            return false;
        });
    };

渲染函数如下所示:

return (
        <div>
            <div>Access</div>
                {generateCheckboxes(props.accessFilters, "access")}

            <div>Bandwidth</div>
                {generateCheckboxes(props.bandwidthFilters, "bandwidth")}
        </div>   
    );

现在我正在尝试为这个组件编写一个测试,我只是在 Enzyme 的浅层方法中传递组件和 Prop 。我只想通过在测试用例中传递一些模拟数据来检查组件是否正确呈现.测试看起来像:

import React from "react";
import { mount, shallow } from "enzyme";
import Checkbox from "../../lib/Checkbox";
import FilterDropdownContent, { Header } from "../components/FilterDropdownContent";
import { generateCheckboxes } from "../components/FilterDropdownContent";
import { access } from "fs";

const accessData = ["Access Type Of The Service"];
const bandwidthData = ["the allowed band width", "the allowed band width"];
const termsFiltersData = ["term associated with the service"];
const appliedFilters = [
    {
        access: ["Access Type Of The Service"],
        bandwidth: ["the allowed band width", "the allowed band width"],
        term: ["term associated with the service"]
    }
];

describe("test the FilterDropdown component", () => {
    it("renders correctly", () => {
        const wrapper = mount(
            <FilterDropdownContent
                accessFilters={accessData}
                bandwidthFilters={bandwidthData}
                appliedFilterList={appliedFilters}
                termsFilters={termsFiltersData}
                toggleFilter={false}
            />
        );
    });
});

但我的测试失败并出现以下错误: TypeError:无法读取未定义的属性“includes”

includes 属性在 generateCheckboxes( ) 函数中。我已经在测试用例中传递了所需的 Prop 。但我不确定是什么导致了这个问题。有人可以帮我解决这个问题吗?

最佳答案

使用 Jest 时,错误 TypeError: Cannot read property 'includes' of undefined 也可能在使用 toEqual 而不是 toMatchObject 时发生。

以下代码将给出 Cannot read property 'includes' of undefined 错误:

test("should return the correct data", async () => {
  const response = await fetch({ url: "http://localhost/" });

  expect(response).toEqual({
    body: new Blob(["raw data"]),
    status: 200,
    statusText: "OK",
  });
});

改用 toMatchObject 将修复它:

// ...
  expect(response).toMatchObject({
// ...

关于reactjs - Jest 和 Enzyme 中的 "Cannot read property includes of undefined"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50387107/

相关文章:

reactjs - 在 React 的 Canvas 元素上加载图像

javascript - React JS 选择菜单默认值

javascript - 在 React Native 中使用上下文

java - 与多个协作者进行单元测试

java - 比较器排序不正确

javascript - 如何在 react 异步调用后测试状态更新和组件重新渲染

javascript - 如何使具有 map 功能的 3 列网格使用react

javascript - 如何测试 shouldComponentUpdate 方法?

jestjs - 为什么我的 Jest spy 没有显示为已调用,而我可以看到它已被调用?

unit-testing - 做TDD的时候,为什么要通过 "just enough"才能通过测试?