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-select-initial-value/_config.js

28 lines
449 B

export default {
html: `
<p>selected: b</p>
<select>
<option>a</option>
<option>b</option>
<option>c</option>
</select>
<p>selected: b</p>
`,
data: {
selected: 'b'
},
test ( assert, component, target ) {
const select = target.querySelector( 'select' );
const options = [ ...target.querySelectorAll( 'option' ) ];
assert.equal( select.value, 'b' );
assert.ok( options[1].selected );
component.destroy();
}
};