shoelace/scripts/plop/templates/component/tests.hbs

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