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/packages/svelte/tests/runtime-legacy/samples/binding-select-late/_config.js

40 lines
707 B

import { test } from '../../test';
export default test({
get props() {
return {
/** @type {string[]} */
items: [],
/** @type {string | null} */
selected: null
};
},
html: `
<select></select>
<p>selected: nothing</p>
`,
test({ assert, component, target }) {
component.items = ['one', 'two', 'three'];
component.selected = 'two';
const options = target.querySelectorAll('option');
assert.ok(!options[0].selected);
assert.ok(options[1].selected);
assert.ok(!options[2].selected);
assert.htmlEqual(
target.innerHTML,
`
<select>
<option>one</option>
<option>two</option>
<option>three</option>
</select>
<p>selected: two</p>
`
);
}
});