mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 12:09:26 +00:00
10 lines
249 B
Handlebars
10 lines
249 B
Handlebars
import { expect, fixture, html, waitUntil } from '@open-wc/testing';
|
|
|
|
describe('<{{ tag }}>', () => {
|
|
it('should render a component', async () => {
|
|
const el = await fixture(html` <{{ tag }}></{{ tag }}> `);
|
|
|
|
expect(el).to.exist;
|
|
});
|
|
});
|