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