import { haveText, html, test } from '../utils' test('can register custom bind object', html`
`, ({ get }) => get('div').should(haveText('bar')) ) test('can register custom bind as function', html`
`, ({ get }) => get('div').should(haveText('bar')) ) test('can consume custom bind as function', html`
`, ({ get }) => get('div').should(haveText('bar')) )