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/binding-input-with-event/_config.js

19 lines
339 B

export default {
props: {
a: 42
},
test({ assert, component, target, window }) {
const input = target.querySelector('input');
assert.equal(input.value, '42');
const event = new window.Event('input');
input.value = 43;
input.dispatchEvent(event);
assert.equal(input.value, '43');
assert.equal(component.a, 43);
}
};