shoelace/src/components/popup/popup.test.ts

11 wiersze
270 B
TypeScript

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