export default { html: `
foo
`, ssrHtml: `foo
`, async test({ assert, component, target, window }) { const input = target.querySelector('input'); input.value = 'bar'; await input.dispatchEvent(new window.Event('input')); assert.htmlEqual(target.innerHTML, `bar
`); } };