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