export default { html: '\n\n

0

', test ( assert, component, target, window ) { const button = target.querySelector( 'button' ); const event = new window.MouseEvent( 'click' ); button.dispatchEvent( event ); assert.equal( component.get().counter, 1 ); assert.equal( target.innerHTML, '\n\n

1

' ); button.dispatchEvent( event ); assert.equal( component.get().counter, 2 ); assert.equal( target.innerHTML, '\n\n

2

' ); assert.equal( component.foo(), 42 ); } };