preact-render-to-json

3.6.6 • Public • Published

preact-render-to-json

npm CircleCI

Render JSX and Preact components to JSON. Useful for Jest Snapshot testing.

Usage with Jest

import preact from 'preact'
import render from 'preact-render-to-json'
 
/** @jsx preact.h */
 
let component = <div class="foo">content</div>;
 
test('component', () => {
    const tree = render(component)
    expect(tree).toMatchSnapshot()
})

License

MIT

Package Sidebar

Install

npm i preact-render-to-json

Weekly Downloads

590

Version

3.6.6

License

MIT

Last publish

Collaborators

  • nathancahill