faceed TypeError:期望(...)。测试React应用程序时,Tobestring不是功能
2019-09-22
1527
我在测试 React 应用时遇到此错误:
TypeError:expect(...).toBeString 不是函数
。我使用的代码是:
import React from "react";
import { configure, shallow } from "enzyme";
import Adapter from "enzyme-adapter-react-16";
import Footer from "../Footer/Footer";
configure({ adapter: new Adapter() });
describe("<About />", () => {
it("Check the type of value", () => {
const props = {
copyright: "Copyright 2019"
};
const wrapper = shallow(<Footer {...props} />);
expect(wrapper.prop("copyright")).toBeString();
});
});
1个回答
我猜你正在使用 jest。因此,
toBeString
不是 jest 中的匹配器。
https://jestjs.io/docs/en/expect
Johnny Zabala
2019-09-22