mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 12:09:26 +00:00
* wip: initial implementation for review * icon testing * feat: add the ability to use SVG sprite sheets * finish up spritesheets * add icon notes * update plopfile, add changelog entry * prettier * linting * linting * fix icon test * eslint fixes? * prettier * disable eslint -.- * linting loop! * linting loop! * prettier * prettier --------- Co-authored-by: Diego <diego@trebellar.com>
11 lines
274 B
Handlebars
11 lines
274 B
Handlebars
import '../../../dist/shoelace.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;
|
|
});
|
|
});
|