我是react测试库的新手,我热衷于使用酶。当我浏览文档时,我发现 create-react-app 允许直接包含第三方测试库。我尝试了以下方法来包含酶,但没有成功。这是我尝试过的,但在我的 app.test.js 中不起作用。
import React from 'react';
import {configure, shallow} from 'enzyme'
import AboutPage from './AboutPage';
describe('About us',() =>{
it('About us content validation', ()=>{
const wrapper = shallow(<AboutPage />);
const textHeader = <p className="value-col-heading">EMPATHY</p>;
expect(wrapper.contains(textHeader)).toEqual(true);
});
});
我收到以下错误:
Enzyme Internal server error : Enzyme expects an adapter...