import {expect, fixture, html} from '@open-wc/testing'; import type ZnDataTableSearch from './data-table-search.component'; describe('', () => { it('should render a component', async () => { const el = await fixture(html` `); expect(el).to.exist; }); });