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/select-multiple-spread-and-.../_config.js

13 lines
318 B

export default {
test({ assert, component, target }) {
const options = target.querySelectorAll('option');
assert.equal(options[0].selected, true);
assert.equal(options[1].selected, false);
component.value = ['2'];
assert.equal(options[0].selected, false);
assert.equal(options[1].selected, true);
}
};