mirror of https://github.com/sveltejs/svelte
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.
71 lines
1.3 KiB
71 lines
1.3 KiB
export default {
|
|
data: {
|
|
values: [ 'Alpha', 'Beta', 'Gamma' ],
|
|
selected: [ 'Beta' ]
|
|
},
|
|
|
|
html: `
|
|
<label>
|
|
<input type="checkbox"> Alpha
|
|
</label>
|
|
|
|
<label>
|
|
<input type="checkbox"> Beta
|
|
</label>
|
|
|
|
<label>
|
|
<input type="checkbox"> Gamma
|
|
</label>
|
|
|
|
<p>Beta</p>`,
|
|
|
|
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 );
|
|
|
|
const event = new window.Event( 'change' );
|
|
|
|
inputs[0].checked = true;
|
|
inputs[0].dispatchEvent( event );
|
|
|
|
assert.equal( target.innerHTML, `
|
|
<label>
|
|
<input type="checkbox"> Alpha
|
|
</label>
|
|
|
|
<label>
|
|
<input type="checkbox"> Beta
|
|
</label>
|
|
|
|
<label>
|
|
<input type="checkbox"> Gamma
|
|
</label>
|
|
|
|
<p>Alpha, Beta</p>
|
|
` );
|
|
|
|
component.set({ selected: [ 'Beta', 'Gamma' ] });
|
|
assert.equal( inputs[0].checked, false );
|
|
assert.equal( inputs[1].checked, true );
|
|
assert.equal( inputs[2].checked, true );
|
|
|
|
assert.equal( target.innerHTML, `
|
|
<label>
|
|
<input type="checkbox"> Alpha
|
|
</label>
|
|
|
|
<label>
|
|
<input type="checkbox"> Beta
|
|
</label>
|
|
|
|
<label>
|
|
<input type="checkbox"> Gamma
|
|
</label>
|
|
|
|
<p>Beta, Gamma</p>
|
|
` );
|
|
}
|
|
};
|