preact-assert-equal-jsx

1.0.0 • Public • Published

This is a port of assert-equal-jsx for Preact.

assertEqualJSX

Example of output

API

assertEqualJSX(jsx, jsx, [opts]);

Example

assertEqualJSX(
  <MyComponent/>,
  // should equal:
  <div className="my-component">
    <h1>Hello world</h1>
    <p>Look at this amazing component</p>
  </div>
)

opts.sanitize

function sanitizeId(str) {
  return str.replace(/my-component-id-(\d+)/ig, 'my-component-id-0');
}
 
assertEqualJSX(
  <div id="my-component-id-314159265"/>,
  // should equal:
  <div id="my-component-id-0">,
  // with sanitization:
  {
    sanitize: sanitizeId
  }
)

Readme

Keywords

none

Package Sidebar

Install

npm i preact-assert-equal-jsx

Weekly Downloads

1

Version

1.0.0

License

MIT

Last publish

Collaborators

  • adriantoine