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, [{ name: 'blah' }, { name: 'bar' }, { name: 'baz' }]); assert.htmlEqual(target.innerHTML, `

blah, bar, baz

`); } };