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.
79 lines
1.4 KiB
79 lines
1.4 KiB
8 years ago
|
const values = [
|
||
|
{ name: 'Alpha' },
|
||
|
{ name: 'Beta' },
|
||
|
{ name: 'Gamma' }
|
||
|
];
|
||
|
|
||
8 years ago
|
export default {
|
||
|
data: {
|
||
8 years ago
|
values,
|
||
|
selected: [ values[1] ]
|
||
8 years ago
|
},
|
||
|
|
||
8 years ago
|
'skip-ssr': true, // values are rendered as [object Object]
|
||
|
|
||
8 years ago
|
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 );
|
||
|
|
||
8 years ago
|
assert.htmlEqual( target.innerHTML, `
|
||
8 years ago
|
<label>
|
||
|
<input type="checkbox"> Alpha
|
||
|
</label>
|
||
|
|
||
|
<label>
|
||
|
<input type="checkbox"> Beta
|
||
|
</label>
|
||
|
|
||
|
<label>
|
||
|
<input type="checkbox"> Gamma
|
||
|
</label>
|
||
|
|
||
|
<p>Alpha, Beta</p>
|
||
|
` );
|
||
|
|
||
8 years ago
|
component.set({ selected: [ values[1], values[2] ] });
|
||
8 years ago
|
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"> Alpha
|
||
|
</label>
|
||
|
|
||
|
<label>
|
||
|
<input type="checkbox"> Beta
|
||
|
</label>
|
||
|
|
||
|
<label>
|
||
|
<input type="checkbox"> Gamma
|
||
|
</label>
|
||
|
|
||
|
<p>Beta, Gamma</p>
|
||
|
` );
|
||
|
}
|
||
|
};
|