import { fixture, html } from '@open-wc/testing'; describe('my-test', () => { it('works', async () => { const el = await fixture(html` <my-element></my-element> `); }); }); import { expect, fixture, html } from '@open-wc/testing'; describe('Plugin - semantic-dom-diff', () => { it('can semantically compare full dom trees', async () => { const el = await fixture(`<div><!-- comment --><h1>${'Hey'} </
