Testing >> Helpers || 20
A library with helpers functions for testing in the browser.
import '@rocket/launch/inline-notification/inline-notification.js';
Testing helpers uses lit, but it's set up as a peer dependency to avoid version conflicts.
You don't need to write your components with lit-html to use this library, but you will need to install it:
npm i -D lit
Usage
We recommend using this library through @open-wc/testing which preconfigures and combines this library with other testing libraries.
The examples that are shown here assume this setup, and import from @open-wc/testing
. If you want to use this library standalone, you will need to import from @open-wc/testing-helpers
directly instead:
import { fixture } from '@open-wc/testing';
import { fixture } from '@open-wc/testing-helpers';
Test fixtures
A test fixture renders a piece of HTML and injects into the DOM so that you can test the behavior of your component. It returns the first dom element from the template so that you can interact with it if needed. For example you can call functions, look up dom nodes or inspect the rendered HTML.
Test fixtures are async to ensure rendering is properly completed.
Templates
Test fixtures can be set up by using a string or a lit template. You don't need to use lit-html
in your project to use the test fixtures, it just renders standard HTML.
Test a custom element
import { fixture } from '@open-wc/testing';
it('can instantiate an element', async () => {
const el = await fixture('<my-el foo="bar"></my-el>');
expect(el.getAttribute('foo')).to.equal('bar');
}
Test a custom element with properties
import { html, fixture } from '@open-wc/testing';
it('can instantiate an element with properties', async () => {
const el = await fixture(html` <my-el .foo=${'bar'}></my-el> `);
expect(el.foo).to.equal('bar');
});
Test a custom class
If you're testing a mixin, or have multiple base classes that offer a various set of options you might find yourself in the situation of needing multiple custom element names in your tests. This can be dangerous as custom elements are global, so you don't want to have overlapping names in your tests. We recommend using the defineCE
function to avoid that:
import { fixture, defineCE } from '@open-wc/testing';
const tag = defineCE(
class extends MyMixin(HTMLElement) {
constructor() {
super();
this.foo = true;
}
},
);
const el = await fixture(`<${tag}></${tag}>`);
expect(el.foo).to.be.true;
Test a custom class with properties
For lit-html it's a little tougher as it does not support dynamic tag names by default.
This uses a workaround that's not performant for rerenders, which is fine for testing, but do NOT use this in production code.
import { html, fixture, defineCE, unsafeStatic } from '@open-wc/testing';
const tagName = defineCE(
class extends MyMixin(HTMLElement) {
constructor() {
super();
this.foo = true;
}
},
);
const tag = unsafeStatic(tagName);
const el = await fixture(html`<${tag} .bar=${'baz'}></${tag}>`);
expect(el.bar).to.equal('baz');
Customize the fixture container
Ordinarily, fixture
will render your template as a child of a plain <div>
element on karma's test runner page:
const el = await fixture(html` <my-el></my-el> `);
<div><my-el></my-el></div>
This should suffice for most cases, but if you need to specify the type of element that contains your custom element fixture, (e.g., to give it an absolute position), you can pass the wrapping node in the parentNode
option:
const parentNode = document.createElement('div');
parentNode.setAttribute('style', 'position:absolute;');
const el = await fixture(html` <my-el></my-el> `, { parentNode });
<div style="position:absolute;"><my-el></my-el></div>
Customize the render function
It could be the case that you need to customize the render function for compatibility reasons, for example if you have multiple versions of lit-html throughout your project. You can achieve this like so:
import { render } from 'custom-lit-html-version';
const el = await fixture(html`<my-el></my-el>`, { render });
Timings
By default fixture awaits the elements "update complete" Promise.
- for lit that is
el.updateComplete
; - for stencil that is
el.componentOnReady()
;
If none of those specfic Promise hooks are found, it will wait for one frame via await nextFrame()
.
Note: this does not guarantee that the element is done rendering - it just waits for the next JavaScript tick.
Essentially, fixture
creates a synchronous fixture, then waits for the element to finish updating, checking updateComplete
first, then falling back to componentReady()
, and nextFrame()
as a last resort.
This way, you can write your tests more succinctly, without having to explicitly await
those hooks yourself.
const el = await fixture(html` <my-el .foo=${'bar'}></my-el> `);
expect(el.foo).to.equal('bar');
const el = fixtureSync(html` <my-el .foo=${'bar'}></my-el> `);
await elementUpdated(el);
expect(el.foo).to.equal('bar');
All of these helpers must be imported from @open-wc/testing
, e.g.
import { nextFrame, aTimeout, waitUntil } from '@open-wc/testing';
nextFrame
Uses requestAnimationFrame
to wait for the next frame.
await nextFrame();
aTimeout
Waits for x
ms via setTimeout
;
await aTimeout(10);
waitUntil
Waits until the given condition returns true. This is useful when elements do async work.
waitUntil
can slow down the execution of tests, it should only be used when you don't have any other more reliable hooks.
import { fixture, waitUntil } from '@open-wc/testing-helpers';
const element = await fixture(html` <my-element></my-element> `);
await waitUntil(() => element.someAsyncProperty, 'Element did not become ready');
await waitUntil(
() => element.shadowRoot.querySelector('my-child-element'),
'Element did not render children',
);
waitUntil
has a default timeout of 1000ms and a polling interval of 50ms. This can be customized:
await waitUntil(predicate, 'Element should become visible', { interval: 10, timeout: 10000 });
The predicate can return a promise.
elementUpdated
If you want to test attribute and property changes, and an easy way to wait for those changes to propagate, you can import the elementUpdated
helper (also available directly in the testing
package)
import { fixture, elementUpdated } from '@open-wc/testing';
import '../my-component.js';
describe('Attributes', () => {
describe('.title', () => {
it('is bound to the `title` attribute', async () => {
const el = await fixture('<my-component title="test"></my-component>');
expect(el.title).to.eq('test');
el.title = 'test 2';
await elementUpdated(el);
expect(el).dom.to.equal(`<my-component title="test 2"></my-component>`);
});
});
});
Testing Events
If you want to interact with web components you will sometimes need to await a specific event before you can continue testing.
Ordinarily, you might pass the done
callback to a test, and call it in the body of an event handler.
This does not work with async test functions, though, which must return a promise instead of calling the done
callback.
The oneEvent
function helps you handle events in the context of the kinds of async test functions that we recommend.
oneEvent
resolves with the event specified when it fires on the element specified.
import { oneEvent } from '@open-wc/testing';
class FiresDone extends HTMLElement {
fireDone() {
this.done = true;
this.dispatchEvent(new CustomEvent('done', { detail: this.done }));
}
}
it('can await an event', async () => {
const tag = defineCE(FiresDone);
const el = await fixture(`<${tag}></${tag}>`);
setTimeout(() => el.fireDone());
const { detail } = await oneEvent(el, 'done');
expect(el.done).to.be.true;
expect(detail).to.be.true;
});
Events with preventDefault()
If you want to test events that have a default behavior, like a forms submit
event, some testing tools can be interrupted if event.preventDefault()
is not called on the event handler. For example, a form's submit
event's default behavior is to navigate to the action
of the form (or reload the page if no action
is set). If the "page" gets reloaded in a test environment, tests can't easily recover/continue. Use the oneDefaultPreventedEvent
function and event.preventDefault()
will be called on the event handler and your tests can continue normally.
it('can await an event and prevent the default', async () => {
const form = await fixture(`<form>
<input type="text" />
<button>Submit button</button>
</form>`);
form.querySelector('button').click();
const { detail } = await oneDefaultPreventedEvent(el, 'submit');
expect(detail).to.be.true;
});
Testing Focus & Blur on IE11
Focus and blur events are synchronous events in all browsers except IE11.
If you need to support that browser in your tests, you can await triggerFocusFor
and triggerBlurFor
helper functions.
import { triggerFocusFor, triggerBlurFor } from '@open-wc/testing';
it('can be focused and blured', async () => {
const el = await fixture('<input type="text">');
await triggerFocusFor(el);
expect(document.activeElement === el).to.be.true;
await triggerBlurFor(el);
expect(document.activeElement === el).to.be.false;
});
Fixture Cleanup
By default, if you import anything via import { ... } from '@open-wc/testing';
, it will automatically register a side-effect that cleans up your fixtures.
If you want to be in full control you can do so by using
import { fixture, fixtureCleanup } from '@open-wc/testing-helpers/pure';
it('can instantiate an element with properties', async () => {
const el = await fixture(html`<my-el .foo=${'bar'}></my-el>`);
expect(el.foo).to.equal('bar');
fixtureCleanup();
}
afterEach(() => {
fixtureCleanup();
});