export default { html: `

count: 10

`, test ( assert, component, target, window ) { const click = new window.MouseEvent( 'click' ); const button = target.querySelector( 'button' ); button.dispatchEvent( click ); assert.equal( component.get( 'x' ), 11 ); assert.htmlEqual( target.innerHTML, `

count: 11

` ); button.dispatchEvent( click ); assert.equal( component.get( 'x' ), 12 ); assert.htmlEqual( target.innerHTML, `

count: 12

` ); } };