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

77 lines
1.5 KiB

const values = [
{ name: 'Alpha' },
{ name: 'Beta' },
{ name: 'Gamma' }
];
8 years ago
export default {
props: {
values,
selected: [values[1]]
8 years ago
},
html: `
<label>
<input type="checkbox" value="[object Object]"> Alpha
8 years ago
</label>
8 years ago
<label>
<input type="checkbox" value="[object Object]"> Beta
8 years ago
</label>
8 years ago
<label>
<input type="checkbox" value="[object Object]"> Gamma
8 years ago
</label>
8 years ago
<p>Beta</p>`,
async test({ assert, component, target, window }) {
const inputs = target.querySelectorAll('input');
assert.equal(inputs[0].checked, false);
assert.equal(inputs[1].checked, true);
assert.equal(inputs[2].checked, false);
8 years ago
const event = new window.Event('change');
8 years ago
inputs[0].checked = true;
await inputs[0].dispatchEvent(event);
8 years ago
assert.htmlEqual(target.innerHTML, `
8 years ago
<label>
<input type="checkbox" value="[object Object]"> Alpha
8 years ago
</label>
8 years ago
<label>
<input type="checkbox" value="[object Object]"> Beta
8 years ago
</label>
8 years ago
<label>
<input type="checkbox" value="[object Object]"> Gamma
8 years ago
</label>
8 years ago
<p>Alpha, Beta</p>
`);
8 years ago
component.selected = [values[1], values[2]];
assert.equal(inputs[0].checked, false);
assert.equal(inputs[1].checked, true);
assert.equal(inputs[2].checked, true);
8 years ago
assert.htmlEqual(target.innerHTML, `
8 years ago
<label>
<input type="checkbox" value="[object Object]"> Alpha
8 years ago
</label>
8 years ago
<label>
<input type="checkbox" value="[object Object]"> Beta
8 years ago
</label>
8 years ago
<label>
<input type="checkbox" value="[object Object]"> Gamma
8 years ago
</label>
8 years ago
<p>Beta, Gamma</p>
`);
8 years ago
}
};