export default { html: `

foo

`, test (assert, component, target, window) { const input = target.querySelector('input'); input.value = 'bar'; input.dispatchEvent(new window.Event('input')); assert.htmlEqual(target.innerHTML, `

bar

`); } };