import { newSpecPage } from '@stencil/core/testing'; import { ProductLine } from '../product-line'; describe('product-line', () => { it('renders', async () => { const page = await newSpecPage({ components: [ProductLine], html: ``, }); expect(page.root).toEqualHtml(` `); }); });