MicheleBertoli / preact-render-to-json

Render JSX and Preact components to JSON

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Render JSX and Preact components to JSON

License:Other


Languages

Language:JavaScript 100.0%