Я тестировал приложение React и столкнулся с этой ошибкой: TypeError: expect(...).toBeString is not a function
.Код, который я использую:
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();
});
});