react/packages/react-test-renderer
Dan Abramov 7e8b0c5800 Updating package versions for release 16.1.0 2017-11-09 14:53:27 +00:00
..
npm Use Yarn Workspaces (#11252) 2017-10-19 00:22:21 +01:00
src Update prettier to 1.8.1 (#10785) 2017-11-07 18:09:33 +00:00
README.md ReactTestRenderer package (#7362) 2016-07-28 21:39:05 -07:00
index.js Convert the Source to ES Modules (#11389) 2017-11-02 19:50:03 +00:00
package.json Updating package versions for release 16.1.0 2017-11-09 14:53:27 +00:00
shallow.js Convert the Source to ES Modules (#11389) 2017-11-02 19:50:03 +00:00

README.md

react-test-renderer

This package provides an experimental 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 "DOM tree" rendered by a React DOM or React Native component without using a browser or jsdom.

Usage:

const ReactTestRenderer = require('react-test-renderer');

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

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

You can also 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: http://facebook.github.io/jest/blog/2016/07/27/jest-14.html.