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

11 wiersze
306 B
TypeScript

import "../../../dist/shoelace.js"
import { expect, fixture, html } from '@open-wc/testing';
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;
});
});