Files
webawesome/scripts/plop/templates/component/tests.hbs
Cory LaViska 015429e05d sl => wa
2023-09-08 13:45:49 -04:00

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