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/event-handler-custom-this/_config.js

23 lines
369 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);
},
};