shoelace/src/components/animated-image/animated-image.test.ts

10 wiersze
262 B
TypeScript

import { expect, fixture, html } from '@open-wc/testing';
describe('<sl-animated-image>', () => {
it('should render a component', async () => {
const el = await fixture(html` <sl-animated-image></sl-animated-image> `);
expect(el).to.exist;
});
});