Extend Chai with support for asserting JSX equality & contents with support for Preact Components.
(Heavily) inspired by jsx-chai.
import { h } from 'preact'; /** @jsx h */
import { expect, default as chai } from 'chai';
import assertJsx from 'preact-jsx-chai';
chai.use(assertJsx);
// check if two JSX DOMs are deeply equal:
expect(
<div id="1">a</div>
).to.deep.equal(
<div id="1">a</div>
);
// check if a given JSX DOM contains the given fragment:
expect(
<div> <span>foo!</span> </div>
).to.contain(
<span>foo!</span>
);Note: in environments like Karma where chai is available as a global,
preact-jsx-chaiwill automatically register itself on import. Don't worry, though, this plugin is smart enough to avoid registering itself multiple times.
Assertions are supported for both functional and classical components.
Typically, JSX assertions follow a pattern where the component to be tested is passed to expect() with any props necessary, and the expected DOM state is passed to .eql() (or its alias .deep.equal()):
// Supports both functional and classical components
const Link = ({ url, text }) => (
<a class="link" href={'/'+href}>Link: { text }</a>
);
expect(
<Link url="?foo" text="foo" />
).to.eql(
<a href="/?foo">Link: foo</a>
);