react-test-renderer
React package for snapshot testing.
Last updated 9 months ago .
· Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install react-test-renderer 
SYNC missed versions from official npm registry.

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.

Documentation:

https://reactjs.org/docs/test-renderer.html

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: https://jestjs.io/blog/2016/07/27/jest-14.html.

Current Tags

  • 18.0.0-beta-24dd07bd2-20211208                                ...           beta (a year ago)
  • 0.0.0-experimental-9c54b29b4-20230322                                ...           experimental (2 days ago)
  • 18.2.0                                ...           latest (9 months ago)
  • 18.3.0-next-9c54b29b4-20230322                                ...           next (2 days ago)
  • 18.0.0-rc.3                                ...           rc (a year ago)

1168 Versions

Dependencies (3)
Dev Dependencies (0)
None

Copyright © npmmirror.com | 浙ICP备15033595号-63 |