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