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