最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to test with Jest that ReactDOM.render has been called when it has been wrapped in a conditional? - Stack Overf

programmeradmin2浏览0评论

I have the following react ponent and it conditionally calls ReactDOM.render if root === true in order to satisfy flow:

import React from 'react'
import ReactDOM from 'react-dom'

import App from './App'

const root = document.getElementById('root')

if (root !== null) {
  ReactDOM.render(<App />, root)
}

The problem is that this test no longer equals true, presumably because the conditional wrapping needs to be mocked as true or something but I can't figure it out.

import ReactDOM from 'react-dom'

jest.mock('react-dom')

require('../index')

test('Renders the application', () => {
  expect(ReactDOM.render).toBeCalled()
})

How do I need to update my test to check that ReactDOM.render is called?

I have the following react ponent and it conditionally calls ReactDOM.render if root === true in order to satisfy flow:

import React from 'react'
import ReactDOM from 'react-dom'

import App from './App'

const root = document.getElementById('root')

if (root !== null) {
  ReactDOM.render(<App />, root)
}

The problem is that this test no longer equals true, presumably because the conditional wrapping needs to be mocked as true or something but I can't figure it out.

import ReactDOM from 'react-dom'

jest.mock('react-dom')

require('../index')

test('Renders the application', () => {
  expect(ReactDOM.render).toBeCalled()
})

How do I need to update my test to check that ReactDOM.render is called?

Share Improve this question edited Nov 5, 2018 at 11:48 skyboyer 23.8k7 gold badges62 silver badges71 bronze badges asked Sep 22, 2018 at 18:59 bertbert 4,0594 gold badges19 silver badges32 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 7

I think this test case is redundant since you will have to mock document and render function so basically what you are testing is just the conditional. But there could be similar use case. You should make following changes to code.

function renderToDOM() {
    if (root !== null) {
        ReactDOM.render(<App />, root)
    }
}
renderToDOM();
export {renderToDOM};

By making this change we will able to write a clean test and test only this piece of code independently. Following is the test case which worked for me. Had to mock ReactDOM.render as well as document.getElementById to get the test case working.

import ReactDOM from "react-dom";
import { mock } from "jest";
import { renderToDOM } from "./index";

describe("test ReactDOM.render", () => {
  const originalRender = ReactDOM.render;
  const originalGetElement = global.document.getElementById;
  beforeEach(() => {
    global.document.getElementById = () => true;
    ReactDOM.render = jest.fn();
  });
  afterAll(() => {
    global.document.getElementById = originalGetElement;
    ReactDOM.render = originalRender;
  });
  it("should call ReactDOM.render", () => {
    renderToDOM();
    expect(ReactDOM.render).toHaveBeenCalled();
  });
});

Following is the code sandbox link where you can see this test running and test cases are passing. https://codesandbox.io/s/7wr0k7qmq

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论