Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
@open-wc/testing-helpers
Advanced tools
Part of Open Web Components
Open Web Components provides a set of defaults, recommendations and tools to help facilitate your web component project. Our recommendations include: developing, linting, testing, building, tooling, demoing, publishing and automating.
In order to efficiently test Web Components you will need some helpers to register and instantiate them for you.
::: tip This is part of the default open-wc recommendation :::
::: warning Testing helpers requires as a peer dependency lit-html. You can install it inside your project with npm :
npm i --save lit-html
:::
import { fixture } from '@open-wc/testing-helpers';
it('can instantiate an element', async () => {
const el = await fixture('<my-el foo="bar"></my-el>');
expect(el.getAttribute('foo')).to.equal('bar');
}
import { html, fixture } from '@open-wc/testing-helpers';
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');
}
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. Therefore we recommend using a the following function to avoid that.
import { fixture, defineCE } from '@open-wc/testing-helpers';
const tag = defineCE(class extends MyMixin(HTMLElement) {
constructor() {
super();
this.foo = true;
}
});
const el = await fixture(`<${tag}></${tag}>`);
expect(el.foo).to.be.true;
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-helpers';
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');
By default fixture awaits the elements "update complete" Promise.
el.updateComplete
;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');
// vs
const el = fixtureSync(html`<my-el .foo=${'bar'}></my-el>`);
await elementUpdated(el);
expect(el.foo).to.equal('bar');
Uses requestAnimationFrame
to wait for the next frame.
await nextFrame();
Waits for x
ms via setTimeout
;
await aTimeout(10); // would wait 10ms
If you want to interact with web components you will sometimes need to await a specific event before you can continue testing.
it('can await an event', async () => {
const tag = defineCE(class extends HTMLElement {
fireDone() {
this.done = true;
this.dispatchEvent(new CustomEvent('done');
}
});
const el = await fixture(`<${tag}></${tag}>`);
setTimeout(() => el.fireDone());
await oneEvent('done');
expect(el.done).to.be.true;
});
Focus and blur events are usually sync but not on IE11 so if you need to support it you can use these little helpers with an await.
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;
});
By default, if you import anything via import { ... } from '@open-wc/testing-helpers';
, 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/index-no-side-effects.js';
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();
}
// Alternatively, you can add the fixtureCleanup in the afterEach function, but note that this is exactly what the automatically registered side-effect does.
afterEach(() => {
fixtureCleanup();
});
FAQs
Testing Helpers following open-wc recommendations
The npm package @open-wc/testing-helpers receives a total of 10,322 weekly downloads. As such, @open-wc/testing-helpers popularity was classified as popular.
We found that @open-wc/testing-helpers demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.