export default { html: `

foo, bar, baz

`, ssrHtml: `

foo, bar, baz

`, async test({ assert, component, target, window }) { const event = new window.MouseEvent('input'); const inputs = target.querySelectorAll('input'); inputs[0].value = 'blah'; await inputs[0].dispatchEvent(event); assert.deepEqual(component.a, ['blah', 'bar', 'baz']); assert.htmlEqual(target.innerHTML, `

blah, bar, baz

`); } };