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