export default { get props() { return { items: ['foo', 'bar', 'baz'], selected: 'foo' }; }, html: `
selected: foo
`, async test({ assert, target, window }) { const buttons = target.querySelectorAll('button'); const event = new window.MouseEvent('click'); await buttons[1].dispatchEvent(event); assert.htmlEqual( target.innerHTML, `selected: bar
` ); } };