Files
webawesome/src/components/split-panel/split-panel.test.ts
Cory LaViska a5b7f8fd6b rework
2021-12-22 18:32:27 -05:00

14 lines
378 B
TypeScript

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