mirror of https://github.com/sveltejs/svelte
18 lines
554 B
18 lines
554 B
export default {
|
|
html: '<button>+1</button>\n\n<p>0</p>',
|
|
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, '<button>+1</button>\n\n<p>1</p>' );
|
|
|
|
button.dispatchEvent( event );
|
|
assert.equal( component.get().counter, 2 );
|
|
assert.equal( target.innerHTML, '<button>+1</button>\n\n<p>2</p>' );
|
|
|
|
assert.equal( component.foo(), 42 );
|
|
}
|
|
};
|