import { haveText, html, test } from '../../utils' test('$root returns the root element of the component', html`
`, ({ get }) => { get('button').should(haveText('click me')) get('button').click() get('button').should(haveText('foo')) } )