You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/runtime/samples/component-binding-parent-su.../_config.js

28 lines
563 B

export default {
html: `
<button>+1</button>
<p>count: 10</p>
`,
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, `
<button>+1</button>
<p>count: 11</p>
` );
button.dispatchEvent( click );
assert.equal( component.get( 'x' ), 12 );
assert.htmlEqual( target.innerHTML, `
<button>+1</button>
<p>count: 12</p>
` );
}
};