7

我正在使用react-test-rendererJest 来测试反应组件。但是,如果我像这样测试一个 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'

我应该如何测试然后响应门户以使该测试正常工作?

4

2 回答 2

8

试着把它放在你的测试中:

beforeAll(() => {
    ReactDOM.createPortal = jest.fn((element, node) => {
        return element
    })
});
于 2019-09-24T09:15:43.100 回答
1

基于 Oliver 的回答,但对于 TypeScript 用户:

describe("Tests", () => {
  const oldCreatePortal = ReactDOM.createPortal;
  beforeAll(() => {
    ReactDOM.createPortal = (node: ReactNode): ReactPortal =>
      node as ReactPortal;
  });

  afterAll(() => {
    ReactDOM.createPortal = oldCreatePortal;
  });
});
于 2022-02-06T21:27:30.760 回答