v4web-components
Version:
Stencil Component Starter
24 lines (23 loc) • 625 B
JavaScript
import { newSpecPage } from '@stencil/core/testing';
import { LabDsTable } from './lab-ds-table';
describe('v4-table', () => {
it('renders', async () => {
const page = await newSpecPage({
components: [LabDsTable],
html: `<lab-ds-table/>`,
});
expect(page.root).toEqualHtml(`
<lab-ds-table>
<div class="header-left scroll-customized v4-table">
<table>
<thead>
<tr class="table-header"></tr>
</thead>
<tbody></tbody>
</table>
</div>
</lab-ds-table>
`);
});
});
//# sourceMappingURL=lab-ds-table.spec.js.map