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

20 lines
513 B

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