Files
webawesome/src/components/mutation-observer/mutation-observer.test.ts
2022-01-15 21:47:14 -08:00

10 lines
271 B
TypeScript

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;
});
});