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