mirror of https://github.com/sveltejs/svelte
23 lines
373 B
23 lines
373 B
export default {
|
|
html: `<input>`,
|
|
|
|
test({ assert, component, target, window }) {
|
|
const input = target.querySelector('input');
|
|
const event = new window.KeyboardEvent('keydown', {
|
|
which: 13
|
|
});
|
|
|
|
let blurred = false;
|
|
|
|
input.focus();
|
|
|
|
input.addEventListener('blur', () => {
|
|
blurred = true;
|
|
});
|
|
|
|
input.dispatchEvent(event);
|
|
|
|
assert.ok(blurred);
|
|
},
|
|
};
|