import { haveText, html, test } from '../utils' test('can register custom magic properties', html`
`, ({ get }) => get('span').should(haveText('baz')) ) test('magics are lazily accessed', html`
`, ({ get }) => { get('button').click() get('button').should(haveText('false')) } )