export default { props: { myClass: 'one two', attributes: { role: 'button' } }, html: `
`, test({ assert, component, target, window }) { component.myClass = 'one'; component.attributes = { 'aria-label': 'Test' }; assert.htmlEqual(target.innerHTML, `
`); } };