Files
Konnor Rogers 67cbb85682 Add support for svg sprites in <sl-icon> (#1374)
* 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>
2023-06-20 14:01:58 -04:00

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;
});
});