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-one-way-bind/_config.js

20 lines
372 B

export default {
skip_if_ssr: true,
props: {
foo: 'a'
},
test({ assert, component, target }) {
const options = target.querySelectorAll( 'option' );
assert.equal( options[0].selected, true );
assert.equal( options[1].selected, false );
component.foo = 'b';
assert.equal( options[0].selected, false );
assert.equal( options[1].selected, true );
}
};