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/component-binding-computed/_config.js

33 lines
725 B

export default {
html: `
<label>firstname <input></label>
<label>lastname <input></label>
`,
async test({ assert, component, target, window }) {
const input = new window.Event('input');
const inputs = target.querySelectorAll('input');
inputs[0].value = 'Ada';
await inputs[0].dispatchEvent(input);
assert.deepEqual(component.values, {
firstname: 'Ada',
lastname: ''
});
inputs[1].value = 'Lovelace';
await inputs[1].dispatchEvent(input);
assert.deepEqual(component.values, {
firstname: 'Ada',
lastname: 'Lovelace'
});
component.values = {
firstname: 'Grace',
lastname: 'Hopper'
};
assert.equal(inputs[0].value, 'Grace');
assert.equal(inputs[1].value, 'Hopper');
}
};