mirror of https://github.com/sveltejs/svelte
18 lines
365 B
18 lines
365 B
import * as assert from 'assert';
|
|
|
|
export default {
|
|
html: '<button>0, 0</button>',
|
|
test ( component, target, window ) {
|
|
const event = new window.MouseEvent( 'click', {
|
|
clientX: 42,
|
|
clientY: 42
|
|
});
|
|
|
|
const button = target.querySelector( 'button' );
|
|
|
|
button.dispatchEvent( event );
|
|
|
|
assert.equal( target.innerHTML, '<button>42, 42</button>' );
|
|
}
|
|
};
|