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-removal/_config.js

21 lines
461 B

// TODO gah, JSDOM appears to behave differently to real browsers here... probably need to raise an issue
export default {
html: '<input>',
test({ assert, component }) {
component.input.focus();
// this should NOT trigger blur event
component.visible = false;
assert.ok(!component.blurred);
component.visible = true;
component.input.focus();
// this SHOULD trigger blur event
component.input.blur();
assert.ok(component.blurred);
}
};