export default { props: { items: [ 'foo', 'bar', 'baz' ], selected: 'foo' }, html: `

selected: foo

`, async test({ assert, component, target, window }) { const buttons = target.querySelectorAll('button'); const event = new window.MouseEvent('click'); await buttons[1].dispatchEvent(event); assert.htmlEqual(target.innerHTML, `

selected: bar

`); } };