> For the complete documentation index, see [llms.txt](https://bryan-guner.gitbook.io/my-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bryan-guner.gitbook.io/my-docs/mynotes/react-docs/test-renderer.md).

# Test Renderer

**Importing**

```javascript
import TestRenderer from 'react-test-renderer'; // ES6
const TestRenderer = require('react-test-renderer'); // ES5 with npm
```

### Overview <a href="#overview" id="overview"></a>

This package provides a React renderer that can be used to render React components to pure JavaScript objects, without depending on the DOM or a native mobile environment.

Essentially, this package makes it easy to grab a snapshot of the platform view hierarchy (similar to a DOM tree) rendered by a React DOM or React Native component without using a browser or [jsdom](https://github.com/tmpvar/jsdom).

Example:

```javascript
import TestRenderer from 'react-test-renderer';

function Link(props) {
  return <a href={props.page}>{props.children}</a>;
}

const testRenderer = TestRenderer.create(
  <Link page="https://www.facebook.com/">Facebook</Link>
);

console.log(testRenderer.toJSON());
// { type: 'a',
//   props: { href: 'https://www.facebook.com/' },
//   children: [ 'Facebook' ] }
```

You can use Jest's snapshot testing feature to automatically save a copy of the JSON tree to a file and check in your tests that it hasn't changed: [Learn more about it](https://jestjs.io/docs/en/snapshot-testing).

You can also traverse the output to find specific nodes and make assertions about them.

```javascript
import TestRenderer from 'react-test-renderer';

function MyComponent() {
  return (
    <div>
      <SubComponent foo="bar" />
      <p className="my">Hello</p>
    </div>
  )
}

function SubComponent() {
  return (
    <p className="sub">Sub</p>
  );
}

const testRenderer = TestRenderer.create(<MyComponent />);
const testInstance = testRenderer.root;

expect(testInstance.findByType(SubComponent).props.foo).toBe('bar');
expect(testInstance.findByProps({className: "sub"}).children).toEqual(['Sub']);
```

#### TestRenderer <a href="#testrenderer" id="testrenderer"></a>

* [`TestRenderer.create()`](broken://pages/Pfh38fwOqQSnFcE14SJS)
* [`TestRenderer.act()`](broken://pages/Pfh38fwOqQSnFcE14SJS)

#### TestRenderer instance <a href="#testrenderer-instance" id="testrenderer-instance"></a>

* [`testRenderer.toJSON()`](broken://pages/Pfh38fwOqQSnFcE14SJS)
* [`testRenderer.toTree()`](broken://pages/Pfh38fwOqQSnFcE14SJS)
* [`testRenderer.update()`](broken://pages/Pfh38fwOqQSnFcE14SJS)
* [`testRenderer.unmount()`](broken://pages/Pfh38fwOqQSnFcE14SJS)
* [`testRenderer.getInstance()`](broken://pages/Pfh38fwOqQSnFcE14SJS)
* [`testRenderer.root`](broken://pages/Pfh38fwOqQSnFcE14SJS)

#### TestInstance <a href="#testinstance" id="testinstance"></a>

* [`testInstance.find()`](broken://pages/Pfh38fwOqQSnFcE14SJS)
* [`testInstance.findByType()`](broken://pages/Pfh38fwOqQSnFcE14SJS)
* [`testInstance.findByProps()`](broken://pages/Pfh38fwOqQSnFcE14SJS)
* [`testInstance.findAll()`](broken://pages/Pfh38fwOqQSnFcE14SJS)
* [`testInstance.findAllByType()`](broken://pages/Pfh38fwOqQSnFcE14SJS)
* [`testInstance.findAllByProps()`](broken://pages/Pfh38fwOqQSnFcE14SJS)
* [`testInstance.instance`](broken://pages/Pfh38fwOqQSnFcE14SJS)
* [`testInstance.type`](broken://pages/Pfh38fwOqQSnFcE14SJS)
* [`testInstance.props`](broken://pages/Pfh38fwOqQSnFcE14SJS)
* [`testInstance.parent`](broken://pages/Pfh38fwOqQSnFcE14SJS)
* [`testInstance.children`](broken://pages/Pfh38fwOqQSnFcE14SJS)

### Reference <a href="#reference" id="reference"></a>

#### `TestRenderer.create()` <a href="#testrenderercreate" id="testrenderercreate"></a>

```javascript
TestRenderer.create(element, options);
```

Create a `TestRenderer` instance with the passed React element. It doesn't use the real DOM, but it still fully renders the component tree into memory so you can make assertions about it. Returns a [TestRenderer instance](broken://pages/Pfh38fwOqQSnFcE14SJS).

#### `TestRenderer.act()` <a href="#testrendereract" id="testrendereract"></a>

```javascript
TestRenderer.act(callback);
```

Similar to the `act()` helper from `react-dom/test-utils`, `TestRenderer.act` prepares a component for assertions. Use this version of `act()` to wrap calls to `TestRenderer.create` and `testRenderer.update`.

```javascript
import {create, act} from 'react-test-renderer';
import App from './app.js'; // The component being tested

// render the component
let root; 
act(() => {
  root = create(<App value={1}/>)
});

// make assertions on root 
expect(root.toJSON()).toMatchSnapshot();

// update with some different props
act(() => {
  root.update(<App value={2}/>);
})

// make assertions on root 
expect(root.toJSON()).toMatchSnapshot();
```

#### `testRenderer.toJSON()` <a href="#testrenderertojson" id="testrenderertojson"></a>

```javascript
testRenderer.toJSON()
```

Return an object representing the rendered tree. This tree only contains the platform-specific nodes like `<div>` or `<View>` and their props, but doesn't contain any user-written components. This is handy for [snapshot testing](https://facebook.github.io/jest/docs/en/snapshot-testing.html#snapshot-testing-with-jest).

#### `testRenderer.toTree()` <a href="#testrenderertotree" id="testrenderertotree"></a>

```javascript
testRenderer.toTree()
```

Return an object representing the rendered tree. The representation is more detailed than the one provided by `toJSON()`, and includes the user-written components. You probably don't need this method unless you're writing your own assertion library on top of the test renderer.

#### `testRenderer.update()` <a href="#testrendererupdate" id="testrendererupdate"></a>

```javascript
testRenderer.update(element)
```

Re-render the in-memory tree with a new root element. This simulates a React update at the root. If the new element has the same type and key as the previous element, the tree will be updated; otherwise, it will re-mount a new tree.

#### `testRenderer.unmount()` <a href="#testrendererunmount" id="testrendererunmount"></a>

```javascript
testRenderer.unmount()
```

Unmount the in-memory tree, triggering the appropriate lifecycle events.

#### `testRenderer.getInstance()` <a href="#testrenderergetinstance" id="testrenderergetinstance"></a>

```javascript
testRenderer.getInstance()
```

Return the instance corresponding to the root element, if available. This will not work if the root element is a function component because they don't have instances.

#### `testRenderer.root` <a href="#testrendererroot" id="testrendererroot"></a>

```javascript
testRenderer.root
```

Returns the root "test instance" object that is useful for making assertions about specific nodes in the tree. You can use it to find other "test instances" deeper below.

#### `testInstance.find()` <a href="#testinstancefind" id="testinstancefind"></a>

```javascript
testInstance.find(test)
```

Find a single descendant test instance for which `test(testInstance)` returns `true`. If `test(testInstance)` does not return `true` for exactly one test instance, it will throw an error.

#### `testInstance.findByType()` <a href="#testinstancefindbytype" id="testinstancefindbytype"></a>

```javascript
testInstance.findByType(type)
```

Find a single descendant test instance with the provided `type`. If there is not exactly one test instance with the provided `type`, it will throw an error.

#### `testInstance.findByProps()` <a href="#testinstancefindbyprops" id="testinstancefindbyprops"></a>

```javascript
testInstance.findByProps(props)
```

Find a single descendant test instance with the provided `props`. If there is not exactly one test instance with the provided `props`, it will throw an error.

#### `testInstance.findAll()` <a href="#testinstancefindall" id="testinstancefindall"></a>

```javascript
testInstance.findAll(test)
```

Find all descendant test instances for which `test(testInstance)` returns `true`.

#### `testInstance.findAllByType()` <a href="#testinstancefindallbytype" id="testinstancefindallbytype"></a>

```javascript
testInstance.findAllByType(type)
```

Find all descendant test instances with the provided `type`.

#### `testInstance.findAllByProps()` <a href="#testinstancefindallbyprops" id="testinstancefindallbyprops"></a>

```javascript
testInstance.findAllByProps(props)
```

Find all descendant test instances with the provided `props`.

#### `testInstance.instance` <a href="#testinstanceinstance" id="testinstanceinstance"></a>

```javascript
testInstance.instance
```

The component instance corresponding to this test instance. It is only available for class components, as function components don't have instances. It matches the `this` value inside the given component.

#### `testInstance.type` <a href="#testinstancetype" id="testinstancetype"></a>

```javascript
testInstance.type
```

The component type corresponding to this test instance. For example, a `<Button />` component has a type of `Button`.

#### `testInstance.props` <a href="#testinstanceprops" id="testinstanceprops"></a>

```javascript
testInstance.props
```

The props corresponding to this test instance. For example, a `<Button size="small" />` component has `{size: 'small'}` as props.

#### `testInstance.parent` <a href="#testinstanceparent" id="testinstanceparent"></a>

```javascript
testInstance.parent
```

The parent test instance of this test instance.

#### `testInstance.children` <a href="#testinstancechildren" id="testinstancechildren"></a>

```javascript
testInstance.children
```

The children test instances of this test instance.

### Ideas <a href="#ideas" id="ideas"></a>

You can pass `createNodeMock` function to `TestRenderer.create` as the option, which allows for custom mock refs. `createNodeMock` accepts the current element and should return a mock ref object. This is useful when you test a component that relies on refs.

```javascript
import TestRenderer from 'react-test-renderer';

class MyComponent extends React.Component {
  constructor(props) {
    super(props);
    this.input = null;
  }
  componentDidMount() {
    this.input.focus();
  }
  render() {
    return <input type="text" ref={el => this.input = el} />
  }
}

let focused = false;
TestRenderer.create(
  <MyComponent />,
  {
    createNodeMock: (element) => {
      if (element.type === 'input') {
        // mock a focus function
        return {
          focus: () => {
            focused = true;
          }
        };
      }
      return null;
    }
  }
);
expect(focused).toBe(true);
```
