DOM Test Utils
Modern utility libray for testing web apps and components. dom-test-utils
works with anything compatible with the browser. Web components and lit-html are first class citizens.
Note: this project is still in a development phase. Based on feedback, there may be breaking changes to the API.
Basics
Set up test HTML fixtures and compare the result with what you expect:
import { createFixture } from 'dom-test-utils';
import { html } from 'lit-html';
const fixture = createFixtureSync(`
<section>
<h1 class="bar">Lorem ipsum</h1>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
</section>
`);
fixture.assertDOMEquals(`
<section class="foo">
<h1 class="foo">Lorem ipsum</h1>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
</section>
`);
Integrates easily with web components. Set up a fixture, await async rendering and compare against shadow dom instead of light dom:
import { componentFixture } from 'dom-test-utils';
import { html } from 'lit-html';
const fixture = await componentFixture('<my-component></my-component>');
console.log(fixture.component);
fixture.assertDOMEquals(`
<section class="foo">
<h1 class="foo">Lorem ipsum</h1>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
</section>
`);
Supports HTML as string, as well as any valid lit-html render value:
const fixture = await componentFixture('<my-component></my-component>');
const fixture = await componentFixture(`
<my-component>
</my-component>
`);
const fixture = await componentFixture(html`
<my-component
some-attribute="${'foo'}"
.some-property="${'bar'}">
</my-component>
`);
const component = document.createElement('my-component');
const fixture = await componentFixture(component);
Compares dom trees based on semantic equality. Attribute and class order don't matter. Whitespace, newlines and non-visual elements like styles and script are ignored. A descriptive error message is printed when two dom trees are not equal.
import { assertDOMEquals } from 'dom-test-utils';
assertDOMEquals('<div>foo</div>', `
<div>
foo
</div>
`);
const a = `
<section>
<div id="foo">
<div></div>
</div>
</section>
`;
const b = `
<section>
<div>
<span></span>
</div>
</section>
`;
assertDOMEquals(a, b);
Workflow
When building dynamic web components, you want to make sure the rendered DOM stays the way you want. Instead of writing manual queries and assertions, you can store a 'snapshot' of the rendered DOM and write tests that given a certain state of your component the dom is still the way you expect. This is similar to Jest snapshots, expect that it works for plain HTML / web components. This can be written by hand, but tooling similar to https://jestjs.io/docs/en/snapshot-testing can automate this process in the future.
API Docs
Test fixtures
Simple fixtures
Set up test fixtures for a piece of HTML:
import { testFixtureSync } from 'dom-test-utils';
const template = `
<section>
<h1>Lorem ipsum</h1>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
</section>
`;
const fixture = testFixtureSync(template);
fixture.querySelector('section');
console.log(fixture.innerHTML);
To avoid memory leaks, make sure to call teardown()
after you finish testing:
const fixture = testFixtureSync('<div></div>');
fixture.teardown();
Async fixtures
Most frameworks or web component libraries do some kind of async/batched rendering. Creating fixtures is therefore async by default:
import { testFixture } from 'dom-test-utils';
const template = `
<my-element></my-element>
`;
const fixture = await testFixture(template);
lit-html fixtures
dom-test-utils
uses lit-html to render the fixtures, and therefore accepts (besides strings) any valid lit-html
render variable:
Templates:
const fixture = await testFixture(html`
<div>foo</div>
`);
Dom elements:
const element = document.createElement('my-component');
const fixture = await testFixture(element);
Arrays:
const templates = [html`<div></div>`, html`<span></span>`, html`<div></div>`];
const fixture = await testFixture(templates);
Comparing and diffing DOM trees
You can use dom-test-utils
for comparing and diffing DOM trees. Trees are compared semantically, not literally. This means that it is lenient with differences in attribute order, whitespace, newlines etc. Only visual HTML is compared, styles and script tags are ignored.
Within tests, the most convenient way is to the assertDOMEquals
method on the test fixture. This will throw a descriptive error when the trees are not equal:
const fixture = await createFixture(html`
<div>foo</div>
`);
fixture.assertDOMEquals('<div>foo</foo>');
fixture.assertDOMEquals('<div>bar</foo>');
You can use expectEquals
for BDD naming conventions.
assertDOMEquals
and expectEquals
accepts the same input as test fixture: strings, lit templates, dom nodes etc.
You can also use assertDOMEquals()
directly:
import { assertDOMEquals } from 'dom-test-utils';
const fixture = await createFixture(html`
<div>foo</div>
`);
fixture.assertDOMEquals('<div>foo</foo>');
fixture.assertDOMEquals('<div>bar</foo>');
getDOMDiff()
can also be used directly:
import { getDOMDiff } from 'dom-test-utils';
const leftTree = html`
<div>foo</div>
`;
const rightTree = html`
<div>bar</div>
`;
const diff = getDOMDiff(leftTree, rightTree);
Inspiration
This project was heavily inspired by existing libraries. The intent is to create a standalone library based on modern APIs, and not coupled to any (testing) framework.