shoelace/src/components/split-panel/split-panel.test.ts

10 wiersze
253 B
TypeScript

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