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

40 lines
709 B

export default {
data: {
cats: [
{
name: "cat 0",
checked: false,
},
{
name: "cat 1",
checked: false,
},
],
},
html: `
<input type="checkbox">
<input type="checkbox">
`,
test(assert, component, target, window) {
const { cats } = component.get();
const newCats = cats.slice();
newCats.push({
name: "cat " + cats.length,
checked: false,
});
component.set({ cats: newCats });
let inputs = target.querySelectorAll('input');
assert.equal(inputs.length, 3);
const event = new window.Event('change');
inputs[0].checked = true;
inputs[0].dispatchEvent(event);
inputs = target.querySelectorAll('input');
assert.equal(inputs.length, 3);
}
};