shoelace/src/components/mutation-observer/mutation-observer.test.ts

10 wiersze
271 B
TypeScript
Czysty Zwykły widok Historia

import { expect, fixture, html } from '@open-wc/testing';
2021-09-30 22:32:59 +00:00
describe('<sl-mutation-observer>', () => {
it('should render a component', async () => {
const el = await fixture(html` <sl-mutation-observer></sl-mutation-observer> `);
expect(el).to.exist;
});
});