我正在使用react-test-renderer
Jest 来测试反应组件。但是,如果我像这样测试一个 react-mui 模态对话框:
describe('Dashboard', function () {
let dashboard;
beforeEach(async () => {
testRenderer = TestRenderer.create(<MemoryRouter><Route component={Dashboard} /></MemoryRouter>);
dashboard = testRenderer.root.findByType(Dashboard);
await waitForExpect(() => expect(dashboard.instance.state.hasLoaded).toBeTruthy());
});
it('opens dialog on clicking the new class', async () => {
const button = testRenderer.root.findByType(Button);
expect(dashboard.instance.state.showDialog).toBeFalsy();
button.props.onClick();
expect(dashboard.instance.state.showDialog).toBeTruthy();
});
});
但是,然后我得到一个错误:
错误:失败:“错误:未捕获'警告:已提供无效容器。这可能表明除了测试渲染器之外正在使用另一个渲染器。(例如,ReactTestRenderer 树内的 ReactDOM.createPortal。)这是不支持。%s'
我应该如何测试然后响应门户以使该测试正常工作?